summaryrefslogtreecommitdiffstats
path: root/locale
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-10 17:40:30 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-10 17:40:30 +0200
commit816f959156a4d44a4b7444c27706c617c76ef5f0 (patch)
treecd3a7f9e2451020552a199cd73d7051be0d05c49 /locale
parentMerge pull request #1409 from ktrhn/master (diff)
downloadpyload-816f959156a4d44a4b7444c27706c617c76ef5f0.tar.xz
Remove old CLI
Diffstat (limited to 'locale')
-rw-r--r--locale/crowdin.yaml3
-rw-r--r--locale/pavement.py9
2 files changed, 2 insertions, 10 deletions
diff --git a/locale/crowdin.yaml b/locale/crowdin.yaml
index a3bd3a3e2..ae932054f 100644
--- a/locale/crowdin.yaml
+++ b/locale/crowdin.yaml
@@ -8,8 +8,5 @@ files:
source: 'pyLoad/*.pot'
translation: 'pyLoad/%two_letters_code%/LC_MESSAGES/%file_name%.po'
-
- source: 'pyLoad/cli.pot'
- translation: 'pyLoad/%two_letters_code%/LC_MESSAGES/pyLoadCli.po'
- -
source: 'pyLoad/core.pot'
translation: 'pyLoad/%two_letters_code%/LC_MESSAGES/pyLoad.po'
diff --git a/locale/pavement.py b/locale/pavement.py
index c2820fade..02aa110b5 100644
--- a/locale/pavement.py
+++ b/locale/pavement.py
@@ -55,11 +55,7 @@ setup(
'RSS plugins': ['feedparser'],
},
# setup_requires=["setuptools_hg"],
- entry_points={
- 'console_scripts': [
- 'pyLoadCore = pyLoadCore:main',
- 'pyLoadCli = pyLoadCli:main'
- ]},
+ entry_points={'console_scripts': ['pyLoadCore = pyLoadCore:main']},
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
@@ -218,11 +214,10 @@ def compile_js():
def generate_locale():
""" Generates localization files """
- EXCLUDE = ["BeautifulSoup.py", "pyload/cli", "web/locale", "web/ajax", "web/cnl", "web/pyload",
+ EXCLUDE = ["BeautifulSoup.py", "web/locale", "web/ajax", "web/cnl", "web/pyload",
"setup.py"]
makepot("core", path("pyload"), EXCLUDE, "./pyload.py\n")
- makepot("cli", path("pyload") / "cli", [], includes="./pyload-cli.py\n")
makepot("setup", "", [], includes="./pyload/setup.py\n")
EXCLUDE = ["ServerThread.py", "web/media/default"]