diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/crowdin.yaml | 3 | ||||
-rw-r--r-- | locale/pavement.py | 9 |
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"] |