1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-28 15:30:10 +02:00

change config.py to config.yml everywhere it is needed

This commit is contained in:
Hans-Christoph Steiner 2021-01-29 13:24:17 +01:00
parent f48ea06adb
commit 97d5933a05
45 changed files with 630 additions and 630 deletions

View File

@ -3372,7 +3372,7 @@ def compare_apks(apk1, apk2, tmp_dir, log_dir=None):
def set_command_in_config(command): def set_command_in_config(command):
'''Try to find specified command in the path, if it hasn't been '''Try to find specified command in the path, if it hasn't been
manually set in config.py. If found, it is added to the config manually set in config.yml. If found, it is added to the config
dict. The return value says whether the command is available. dict. The return value says whether the command is available.
''' '''
@ -3524,9 +3524,9 @@ def load_stats_fdroid_signing_key_fingerprints():
repo_key_sig = config.get('repo_key_sha256') repo_key_sig = config.get('repo_key_sha256')
if repo_key_sig: if repo_key_sig:
if jar_sigkey != repo_key_sig: if jar_sigkey != repo_key_sig:
raise FDroidException("Signature key fingerprint of file '{}' does not match repo_key_sha256 in config.py (found fingerprint: '{}')".format(jar_file, jar_sigkey)) raise FDroidException("Signature key fingerprint of file '{}' does not match repo_key_sha256 in config.yml (found fingerprint: '{}')".format(jar_file, jar_sigkey))
else: else:
logging.warning("repo_key_sha256 not in config.py, setting it to the signature key fingerprint of '{}'".format(jar_file)) logging.warning("repo_key_sha256 not in config.yml, setting it to the signature key fingerprint of '{}'".format(jar_file))
config['repo_key_sha256'] = jar_sigkey config['repo_key_sha256'] = jar_sigkey
write_to_config(config, 'repo_key_sha256') write_to_config(config, 'repo_key_sha256')

View File

@ -147,7 +147,7 @@ def update_awsbucket_libcloud(repo_section):
subdirectories) to the AWS S3 "bucket". The contents of that subdir of the subdirectories) to the AWS S3 "bucket". The contents of that subdir of the
bucket will first be deleted. bucket will first be deleted.
Requires AWS credentials set in config.py: awsaccesskeyid, awssecretkey Requires AWS credentials set in config.yml: awsaccesskeyid, awssecretkey
''' '''
logging.debug(_('using Apache libcloud to sync with {url}') logging.debug(_('using Apache libcloud to sync with {url}')
@ -770,7 +770,7 @@ def main():
and not config.get('binary_transparency_remote') \ and not config.get('binary_transparency_remote') \
and not config.get('virustotal_apikey') \ and not config.get('virustotal_apikey') \
and local_copy_dir is None: and local_copy_dir is None:
logging.warning(_('No option set! Edit your config.py to set at least one of these:') logging.warning(_('No option set! Edit your config.yml to set at least one of these:')
+ '\nserverwebroot, servergitmirrors, local_copy_dir, awsbucket, ' + '\nserverwebroot, servergitmirrors, local_copy_dir, awsbucket, '
+ 'virustotal_apikey, androidobservatory, or binary_transparency_remote') + 'virustotal_apikey, androidobservatory, or binary_transparency_remote')
sys.exit(1) sys.exit(1)

View File

@ -59,7 +59,7 @@ def make(apps, apks, repodir, archive):
if hasattr(common.options, 'nosign') and common.options.nosign: if hasattr(common.options, 'nosign') and common.options.nosign:
if 'keystore' not in common.config and 'repo_pubkey' not in common.config: if 'keystore' not in common.config and 'repo_pubkey' not in common.config:
raise FDroidException(_('"repo_pubkey" must be present in config.py when using --nosign!')) raise FDroidException(_('"repo_pubkey" must be present in config.yml when using --nosign!'))
else: else:
common.assert_config_keystore(common.config) common.assert_config_keystore(common.config)

View File

@ -75,7 +75,7 @@ def main():
config = common.read_config(options) config = common.read_config(options)
if not config['update_stats']: if not config['update_stats']:
logging.info("Stats are disabled - set \"update_stats = True\" in your config.py") logging.info("Stats are disabled - set \"update_stats = True\" in your config.yml")
sys.exit(1) sys.exit(1)
# Get all metadata-defined apps... # Get all metadata-defined apps...

View File

@ -131,7 +131,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -143,7 +143,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -151,7 +151,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -159,7 +159,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -172,7 +172,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1196,7 +1196,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1245,7 +1245,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1295,7 +1295,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1770,7 +1770,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2696,7 +2696,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -132,7 +132,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -144,7 +144,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -152,7 +152,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -160,7 +160,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1197,7 +1197,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1246,7 +1246,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1296,7 +1296,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1771,7 +1771,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2697,7 +2697,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -138,44 +138,44 @@ msgid "%s option does not take a value"
msgstr "%sགདམ་ཀ་ནུས་མེད་རེད་འདུག" msgstr "%sགདམ་ཀ་ནུས་མེད་རེད་འདུག"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' འདི་config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keypass' འདི་config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' འདི་config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keypass' འདི་config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keystore' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keystore' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keystorepass' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'keystorepass' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'repo_keyalias' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' འདི་ config.py ནང་རྙེད་མ་སོང་།!" msgstr "'repo_keyalias' འདི་ config.yml ནང་རྙེད་མ་སོང་།!"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -183,13 +183,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'དགསོ་མཁོ།' ནི་གནས་སྟངས་འདི་ལ་ཁུངས་ལྡན་གྱི་རྩོད་པ་རེད་མིན་འདུག" msgstr "'དགསོ་མཁོ།' ནི་གནས་སྟངས་འདི་ལ་ཁུངས་ལྡན་གྱི་རྩོད་པ་རེད་མིན་འདུག"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' འདི་ 'config.py' ནང་སྒྲིག་ཐུབ་མ་སོང་།!" msgstr "'sdk_path' འདི་ 'config.yml' ནང་སྒྲིག་ཐུབ་མ་སོང་།!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "'sdk_path' འདི་ 'config.py' ནང་སྒྲིག་ཐུབ་མ་སོང་།!" msgstr "'sdk_path' འདི་ 'config.yml' ནང་སྒྲིག་ཐུབ་མ་སོང་།!"
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1218,8 +1218,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "མིང་། '%s 1' ནི་རང་མིང་ཁོ་ན་རེད་། - མེད་པ་བཟོས།" msgstr "མིང་། '%s 1' ནི་རང་མིང་ཁོ་ན་རེད་། - མེད་པ་བཟོས།"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "'config.py' རྙེད་མ་སོང་།, སོར་བཞག་བེད་སྤྱོད་བྱེད་བཞིན་པ།." msgstr "'config.yml' རྙེད་མ་སོང་།, སོར་བཞག་བེད་སྤྱོད་བྱེད་བཞིན་པ།."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1241,7 +1241,7 @@ msgstr "{linedesc} ནང་གྱི་ {versionName}འདིའི་ཆེ
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "No config.yml found, using defaults." msgid "No config.yml found, using defaults."
msgstr "'config.py' རྙེད་མ་སོང་།, སོར་བཞག་བེད་སྤྱོད་བྱེད་བཞིན་པ།." msgstr "'config.yml' རྙེད་མ་སོང་།, སོར་བཞག་བེད་སྤྱོད་བྱེད་བཞིན་པ།."
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "No fingerprint in URL." msgid "No fingerprint in URL."
@ -1269,8 +1269,8 @@ msgid "No need to specify that the app is for Android"
msgstr "མཉེན་ཆས་འདི་ཨེན་ཀྲོཌ་ཆེད་དུ་ཡིན་པ་དམིགས་སྟོན་བྱེད་དགོས་དོན་མེད།" msgstr "མཉེན་ཆས་འདི་ཨེན་ཀྲོཌ་ཆེད་དུ་ཡིན་པ་དམིགས་སྟོན་བྱེད་དགོས་དོན་མེད།"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "གདམ་ཀ་མེད་པ་སྒྲིག།! ཁྱེད་རང་གི་config.py འདིའི་ནང་ནས་མ་མཐའ་ཡིན་ཡང་གང་རུང་ཞིག་རྩོམ་སྒྲིག་བྱེད་:" msgstr "གདམ་ཀ་མེད་པ་སྒྲིག།! ཁྱེད་རང་གི་config.yml འདིའི་ནང་ནས་མ་མཐའ་ཡིན་ཡང་གང་རུང་ཞིག་རྩོམ་སྒྲིག་བྱེད་:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1319,13 +1319,13 @@ msgid "Nothing to do for {appid}."
msgstr "{appid} ཆེད་དུ་བྱ་རྒྱུ་གང་ཡང་མེད་།." msgstr "{appid} ཆེད་དུ་བྱ་རྒྱུ་གང་ཡང་མེད་།."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
#, fuzzy #, fuzzy
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
msgstr "'sdk_path' འདི་ 'config.py' ནང་སྒྲིག་ཐུབ་མ་སོང་།!" msgstr "'sdk_path' འདི་ 'config.yml' ནང་སྒྲིག་ཐུབ་མ་སོང་།!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode #. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
@ -1795,13 +1795,13 @@ msgid "This repo already has local metadata: %s"
msgstr "རེ་པོ་འདི་ལ་སྔོན་ཚོད་ནས་ས་གནས་ཀྱི་རྒྱབ་ལྗོངས་ཡིག་ཆ་འདུག: %s 1" msgstr "རེ་པོ་འདི་ལ་སྔོན་ཚོད་ནས་ས་གནས་ཀྱི་རྒྱབ་ལྗོངས་ཡིག་ཆ་འདུག: %s 1"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "awsbucket, awssecretkey དང་། awsaccesskeyid བེད་སྤྱོད་བྱེད་པའི་ཆེད་དུ་ config.py ནང་དུ་ངེས་པར་དུ་སྒྲིག་དགོས།!" msgstr "awsbucket, awssecretkey དང་། awsaccesskeyid བེད་སྤྱོད་བྱེད་པའི་ཆེད་དུ་ config.yml ནང་དུ་ངེས་པར་དུ་སྒྲིག་དགོས།!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
#, fuzzy #, fuzzy
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "awsbucket, awssecretkey དང་། awsaccesskeyid བེད་སྤྱོད་བྱེད་པའི་ཆེད་དུ་ config.py ནང་དུ་ངེས་པར་དུ་སྒྲིག་དགོས།!" msgstr "awsbucket, awssecretkey དང་། awsaccesskeyid བེད་སྤྱོད་བྱེད་པའི་ཆེད་དུ་ config.yml ནང་དུ་ངེས་པར་དུ་སྒྲིག་དགོས།!"
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "URL must start with https:// or http://" msgid "URL must start with https:// or http://"
@ -2728,8 +2728,8 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" མིན་འདུག! config.pyནོར་བཅོས་བྱེད།." msgstr "{name} \"{path}\" མིན་འདུག! config.ymlནོར་བཅོས་བྱེད།."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -134,7 +134,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -146,7 +146,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -154,7 +154,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -162,7 +162,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -175,7 +175,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1201,7 +1201,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1250,7 +1250,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1300,7 +1300,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1776,7 +1776,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2705,7 +2705,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -142,7 +142,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -154,7 +154,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -162,7 +162,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -170,7 +170,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -183,7 +183,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1211,7 +1211,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1260,7 +1260,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1310,7 +1310,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1789,7 +1789,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2727,7 +2727,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -156,8 +156,8 @@ msgid "%s option does not take a value"
msgstr "Option %s verfügt über keinen Wert" msgstr "Option %s verfügt über keinen Wert"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "„keypass” nicht in config.py vorhanden!" msgstr "„keypass” nicht in config.yml vorhanden!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -168,24 +168,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' ist NONE und 'smartcardoptions' ist leer!" msgstr "'keystore' ist NONE und 'smartcardoptions' ist leer!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "„keystore” nicht in config.py vorhanden!" msgstr "„keystore” nicht in config.yml vorhanden!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "„keystore” nicht in config.yml vorhanden!" msgstr "„keystore” nicht in config.yml vorhanden!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "„keystorepass” nicht in config.py vorhanden!" msgstr "„keystorepass” nicht in config.yml vorhanden!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "„keystorepass” nicht in config.yml vorhanden!" msgstr "„keystorepass” nicht in config.yml vorhanden!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "„repo_keyalias” nicht in config.py vorhanden!" msgstr "„repo_keyalias” nicht in config.yml vorhanden!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -197,8 +197,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "„required” ist ein ungültiges Argument für Positionsangaben" msgstr "„required” ist ein ungültiges Argument für Positionsangaben"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "Kein 'sdk_path' in 'config.py' festgelegt!" msgstr "Kein 'sdk_path' in 'config.yml' festgelegt!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1228,8 +1228,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Name '%s' ist nur der automatische Name - entfernen Sie ihn" msgstr "Name '%s' ist nur der automatische Name - entfernen Sie ihn"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Keine 'config.py' gefunden, nutze Standardeinstellungen." msgstr "Keine 'config.yml' gefunden, nutze Standardeinstellungen."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1277,8 +1277,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Sie müssen nicht angeben, dass die App für Android ist" msgstr "Sie müssen nicht angeben, dass die App für Android ist"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Keine Option gesetzt! Bearbeiten Sie Ihre config.py, um mindestens eine davon zu setzen:" msgstr "Keine Option gesetzt! Bearbeiten Sie Ihre config.yml, um mindestens eine davon zu setzen:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1327,8 +1327,8 @@ msgid "Nothing to do for {appid}."
msgstr "Keine zu erledigenden Aufgaben für {appid}." msgstr "Keine zu erledigenden Aufgaben für {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Legen Sie diese nun in der config.py fest:" msgstr "Legen Sie diese nun in der config.yml fest:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1803,8 +1803,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Dieses Repo hat bereits lokale Metadaten: %s" msgstr "Dieses Repo hat bereits lokale Metadaten: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Um awsbucket zu benutzen, müssen awssecretkey und awsaccesskeyid auch in der config.py gesetzt sein!" msgstr "Um awsbucket zu benutzen, müssen awssecretkey und awsaccesskeyid auch in der config.yml gesetzt sein!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2735,8 +2735,8 @@ msgstr "{file} ist leer oder beschädigt!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" existiert nicht! Korrigieren Sie es in der config.py." msgstr "{name} \"{path}\" existiert nicht! Korrigieren Sie es in der config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1772,7 +1772,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2698,7 +2698,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -131,7 +131,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -143,7 +143,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -151,7 +151,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -159,7 +159,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -172,7 +172,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1196,7 +1196,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1245,7 +1245,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1295,7 +1295,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1770,7 +1770,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2696,7 +2696,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -151,8 +151,8 @@ msgid "%s option does not take a value"
msgstr "la opción %s no toma un valor" msgstr "la opción %s no toma un valor"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "¡'keypass' no encontrado en config.py!" msgstr "¡'keypass' no encontrado en config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -163,24 +163,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "¡\"keystore\" es NONE y \"smartcardoptions\" está vacío!" msgstr "¡\"keystore\" es NONE y \"smartcardoptions\" está vacío!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "¡'keystore' no encontrado en config.py!" msgstr "¡'keystore' no encontrado en config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "¡'keystore' no encontrado en config.yml!" msgstr "¡'keystore' no encontrado en config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "¡'keystorepass' no encontrado en config.py!" msgstr "¡'keystorepass' no encontrado en config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "¡'keystorepass' no encontrado en config.yml!" msgstr "¡'keystorepass' no encontrado en config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "¡'repo_keyalias' no encontrado en config.py!" msgstr "¡'repo_keyalias' no encontrado en config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -192,8 +192,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' es un argumento inválido para posicionales" msgstr "'required' es un argumento inválido para posicionales"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "¡'sdk_path' no establecido en 'config.py'!" msgstr "¡'sdk_path' no establecido en 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1220,8 +1220,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "El nombre '%s' es simplemente el nombre automático - elimínelo" msgstr "El nombre '%s' es simplemente el nombre automático - elimínelo"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "No se encontró 'config.py', se usarán los valores predeterminados." msgstr "No se encontró 'config.yml', se usarán los valores predeterminados."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1269,8 +1269,8 @@ msgid "No need to specify that the app is for Android"
msgstr "No hay necesidad de especificar que la aplicación es para Android" msgstr "No hay necesidad de especificar que la aplicación es para Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "No hay opción establecida! Edita tu config.py para establecer al menos una de estas opciones:" msgstr "No hay opción establecida! Edita tu config.yml para establecer al menos una de estas opciones:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1319,8 +1319,8 @@ msgid "Nothing to do for {appid}."
msgstr "Nada que hacer para {appid}." msgstr "Nada que hacer para {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Ahora establezca lo siguiente en config.py:" msgstr "Ahora establezca lo siguiente en config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1794,8 +1794,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Este repo ya tiene metadatos locales: %s" msgstr "Este repo ya tiene metadatos locales: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "¡Para usar awsbucket hay que configurar también awssecretkey y awsaccesskeyid en config.py!" msgstr "¡Para usar awsbucket hay que configurar también awssecretkey y awsaccesskeyid en config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2720,8 +2720,8 @@ msgstr "¡{file} está vacío o corrupto!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "¡{name} \"{path}\" no existe! Corrijalo en config.py." msgstr "¡{name} \"{path}\" no existe! Corrijalo en config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -136,7 +136,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -148,7 +148,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -156,7 +156,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -164,7 +164,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -177,7 +177,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1212,7 +1212,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1261,7 +1261,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1311,7 +1311,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1790,7 +1790,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2727,7 +2727,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1201,7 +1201,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1250,7 +1250,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1300,7 +1300,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1775,7 +1775,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2701,7 +2701,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -131,7 +131,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -143,7 +143,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -151,7 +151,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -159,7 +159,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -172,7 +172,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1196,7 +1196,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1245,7 +1245,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1295,7 +1295,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1770,7 +1770,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2696,7 +2696,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1772,7 +1772,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2698,7 +2698,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1772,7 +1772,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2698,7 +2698,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -131,7 +131,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -143,7 +143,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -151,7 +151,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -159,7 +159,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -172,7 +172,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1196,7 +1196,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1245,7 +1245,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1295,7 +1295,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1770,7 +1770,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2696,7 +2696,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -166,8 +166,8 @@ msgid "%s option does not take a value"
msgstr "l'option %s ne prend pas de valeur" msgstr "l'option %s ne prend pas de valeur"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' non trouvé dans config.py !" msgstr "'keypass' non trouvé dans config.yml !"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -178,24 +178,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' n'est pas utilisé et 'smartcardoptions' est vide !" msgstr "'keystore' n'est pas utilisé et 'smartcardoptions' est vide !"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' non trouvé dans config.py !" msgstr "'keystore' non trouvé dans config.yml !"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' non trouvé dans config.yml !" msgstr "'keystore' non trouvé dans config.yml !"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' non trouvé dans config.py !" msgstr "'keystorepass' non trouvé dans config.yml !"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' non trouvé dans config.yml !" msgstr "'keystorepass' non trouvé dans config.yml !"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' non trouvé dans config.py !" msgstr "'repo_keyalias' non trouvé dans config.yml !"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -207,8 +207,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' est invalide comme argument positionnel" msgstr "'required' est invalide comme argument positionnel"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' n'est pas configuré dans 'config.py' !" msgstr "'sdk_path' n'est pas configuré dans 'config.yml' !"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1235,8 +1235,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Le nom '%s' est just un nom générer - retirer le" msgstr "Le nom '%s' est just un nom générer - retirer le"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Aucun 'config.py' trouvée, utilisation des originales." msgstr "Aucun 'config.yml' trouvée, utilisation des originales."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1284,8 +1284,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Pas besoin de spécifier que l'application est pour Android" msgstr "Pas besoin de spécifier que l'application est pour Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Aucune option configurer! Éditer votre config.py pour le mettre au moins a l'un d'eux:" msgstr "Aucune option configurer! Éditer votre config.yml pour le mettre au moins a l'un d'eux:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1334,8 +1334,8 @@ msgid "Nothing to do for {appid}."
msgstr "Rien à faire pour {appid}." msgstr "Rien à faire pour {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Maintenant, définissez-les dans config.py:" msgstr "Maintenant, définissez-les dans config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1809,8 +1809,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Ce dépôt a déjà des méta-données locales : %s" msgstr "Ce dépôt a déjà des méta-données locales : %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Pour utiliser awsbucket, awssecretkey et awsaccesskeyid doivent aussi être configurées dans config.py !" msgstr "Pour utiliser awsbucket, awssecretkey et awsaccesskeyid doivent aussi être configurées dans config.yml !"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2739,7 +2739,7 @@ msgstr "{file} est vide ou corrompu !"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -132,7 +132,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -144,7 +144,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -152,7 +152,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -160,7 +160,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1197,7 +1197,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1246,7 +1246,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1296,7 +1296,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1771,7 +1771,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2697,7 +2697,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -140,44 +140,44 @@ msgid "%s option does not take a value"
msgstr "A(z) %s kapcsoló nem fogad értéket" msgstr "A(z) %s kapcsoló nem fogad értéket"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "A „keypass” nem található a config.py fájlban." msgstr "A „keypass” nem található a config.yml fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "A „keypass” nem található a config.py fájlban." msgstr "A „keypass” nem található a config.yml fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "A „keystore” nem található a config.py fájlban." msgstr "A „keystore” nem található a config.yml fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "A „keystore” nem található a config.py fájlban." msgstr "A „keystore” nem található a config.yml fájlban."
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "A „keystorepass” nem található a config.py fájlban." msgstr "A „keystorepass” nem található a config.yml fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "A „keystorepass” nem található a config.py fájlban." msgstr "A „keystorepass” nem található a config.yml fájlban."
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "A „repo_keyalias” nem található a config.py fájlban." msgstr "A „repo_keyalias” nem található a config.yml fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "A „repo_keyalias” nem található a config.py fájlban." msgstr "A „repo_keyalias” nem található a config.yml fájlban."
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -185,13 +185,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "Az „sdk_path” nincs megadva a „config.py” fájlban." msgstr "Az „sdk_path” nincs megadva a „config.yml” fájlban."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "Az „sdk_path” nincs megadva a „config.py” fájlban." msgstr "Az „sdk_path” nincs megadva a „config.yml” fájlban."
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1210,7 +1210,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1259,7 +1259,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1309,7 +1309,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1784,7 +1784,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2710,7 +2710,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -131,44 +131,44 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' tidak ditemukan dalam config.py!" msgstr "'keypass' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' tidak ditemukan dalam config.py!" msgstr "'keypass' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' tidak ditemukan dalam config.py!" msgstr "'keystore' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' tidak ditemukan dalam config.py!" msgstr "'keystore' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' tidak ditemukan dalam config.py!" msgstr "'keystorepass' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' tidak ditemukan dalam config.py!" msgstr "'keystorepass' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' tidak ditemukan dalam config.py!" msgstr "'repo_keyalias' tidak ditemukan dalam config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' tidak ditemukan dalam config.py!" msgstr "'repo_keyalias' tidak ditemukan dalam config.yml!"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -176,13 +176,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "'keypass' tidak ditemukan dalam config.py!" msgstr "'keypass' tidak ditemukan dalam config.yml!"
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1200,7 +1200,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1249,7 +1249,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1299,7 +1299,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1773,7 +1773,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2696,7 +2696,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -152,8 +152,8 @@ msgid "%s option does not take a value"
msgstr "l'opzione %s non accetta un valore" msgstr "l'opzione %s non accetta un valore"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "\"keypass\" non trovato in config.py!" msgstr "\"keypass\" non trovato in config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -164,24 +164,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' è NONE e 'smartcardoptions' è vuoto!" msgstr "'keystore' è NONE e 'smartcardoptions' è vuoto!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "\"keystore\" non trovato in config.py!" msgstr "\"keystore\" non trovato in config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "\"keystore\" non trovato in config.yml!" msgstr "\"keystore\" non trovato in config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "\"keystorepass\" non trovato in config.py!" msgstr "\"keystorepass\" non trovato in config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "\"keystorepass\" non trovato in config.yml!" msgstr "\"keystorepass\" non trovato in config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "\"repo_keyalias\" non trovato in config.py!" msgstr "\"repo_keyalias\" non trovato in config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -193,8 +193,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "\"required\" è un argomento invalido per i posizionali" msgstr "\"required\" è un argomento invalido per i posizionali"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "\"sdk_path\" non impostato in \"config.py\"!" msgstr "\"sdk_path\" non impostato in \"config.yml\"!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1221,8 +1221,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Il nome '%s' è solo il nome automatico - rimuovilo" msgstr "Il nome '%s' è solo il nome automatico - rimuovilo"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Nessun 'config.py' trovato, utilizzando i valori predefiniti." msgstr "Nessun 'config.yml' trovato, utilizzando i valori predefiniti."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1270,8 +1270,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Non c'è bisogno di specificare che l'applicazione è per Android" msgstr "Non c'è bisogno di specificare che l'applicazione è per Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Nessuna opzione impostata! Modifica il tuo config.py per impostare almeno uno di questi:" msgstr "Nessuna opzione impostata! Modifica il tuo config.yml per impostare almeno uno di questi:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1320,8 +1320,8 @@ msgid "Nothing to do for {appid}."
msgstr "Niente da fare per {appid}." msgstr "Niente da fare per {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Ora imposta i seguenti campi in config.py:" msgstr "Ora imposta i seguenti campi in config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1795,7 +1795,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2721,7 +2721,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -131,7 +131,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -143,7 +143,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -151,7 +151,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -159,7 +159,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -172,7 +172,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1195,7 +1195,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1244,7 +1244,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1294,7 +1294,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1768,7 +1768,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2691,7 +2691,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -134,8 +134,8 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' ulac-it di config.py!" msgstr "'keypass' ulac-it di config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -146,24 +146,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' ulac-it di config.py!" msgstr "'keystore' ulac-it di config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' ulac-it di config.yml!" msgstr "'keystore' ulac-it di config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' ulac-it di config.py!" msgstr "'keystorepass' ulac-it di config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' ulac-it di config.yml!" msgstr "'keystorepass' ulac-it di config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' ulac-it deg config.py!" msgstr "'repo_keyalias' ulac-it deg config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -175,8 +175,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' d taɣiret ur iṣeḥḥan ara i usideg" msgstr "'required' d taɣiret ur iṣeḥḥan ara i usideg"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' ur yettwasbadu ara 'config.py'!" msgstr "'sdk_path' ur yettwasbadu ara 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1199,7 +1199,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Isem '%s' d isem awurman kan - kkes-it" msgstr "Isem '%s' d isem awurman kan - kkes-it"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1248,7 +1248,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1298,7 +1298,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1773,7 +1773,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2699,7 +2699,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -138,44 +138,44 @@ msgid "%s option does not take a value"
msgstr "%s 옵션은 값을 받지 않습니다" msgstr "%s 옵션은 값을 받지 않습니다"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass'를 config.py에서 찾을 수 없습니다!" msgstr "'keypass'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass'를 config.py에서 찾을 수 없습니다!" msgstr "'keypass'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore'를 config.py에서 찾을 수 없습니다!" msgstr "'keystore'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore'를 config.py에서 찾을 수 없습니다!" msgstr "'keystore'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass'를 config.py에서 찾을 수 없습니다!" msgstr "'keystorepass'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass'를 config.py에서 찾을 수 없습니다!" msgstr "'keystorepass'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias'를 config.py에서 찾을 수 없습니다!" msgstr "'repo_keyalias'를 config.yml에서 찾을 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias'를 config.py에서 찾을 수 없습니다!" msgstr "'repo_keyalias'를 config.yml에서 찾을 수 없습니다!"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -183,13 +183,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required'는 고정적을 위한 잘못된 인수입니다" msgstr "'required'는 고정적을 위한 잘못된 인수입니다"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path'를 'config.py'에서 설정할 수 없습니다!" msgstr "'sdk_path'를 'config.yml'에서 설정할 수 없습니다!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "'sdk_path'를 'config.py'에서 설정할 수 없습니다!" msgstr "'sdk_path'를 'config.yml'에서 설정할 수 없습니다!"
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1207,7 +1207,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1256,7 +1256,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1306,7 +1306,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1780,7 +1780,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2706,8 +2706,8 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\"는 존재하지 않습니다! config.py에서 그것을 고치세요." msgstr "{name} \"{path}\"는 존재하지 않습니다! config.yml에서 그것을 고치세요."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -145,7 +145,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -157,7 +157,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -165,7 +165,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -186,7 +186,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1210,7 +1210,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1259,7 +1259,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1309,7 +1309,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1784,7 +1784,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2710,7 +2710,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -141,44 +141,44 @@ msgid "%s option does not take a value"
msgstr "%s-valget tar ikke en verdi" msgstr "%s-valget tar ikke en verdi"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' ble ikke funnet i config.py!" msgstr "'keypass' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' ble ikke funnet i config.py!" msgstr "'keypass' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' ble ikke funnet i config.py!" msgstr "'keystore' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' ble ikke funnet i config.py!" msgstr "'keystore' ble ikke funnet i config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' ble ikke funnet i config.py!" msgstr "'keystorepass' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' ble ikke funnet i config.py!" msgstr "'keystorepass' ble ikke funnet i config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' ble ikke funnet i config.py!" msgstr "'repo_keyalias' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' ble ikke funnet i config.py!" msgstr "'repo_keyalias' ble ikke funnet i config.yml!"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -187,13 +187,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' er et ugyldig argument for posisjonsinfo" msgstr "'required' er et ugyldig argument for posisjonsinfo"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' ble ikke funnet i config.py!" msgstr "'sdk_path' ble ikke funnet i config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "'sdk_path' ble ikke funnet i config.py!" msgstr "'sdk_path' ble ikke funnet i config.yml!"
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1251,8 +1251,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Navnet \"%s\" er kun det forvalgte navnet, fjern det." msgstr "Navnet \"%s\" er kun det forvalgte navnet, fjern det."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Fant ingen 'config.py' , bruker forvalg." msgstr "Fant ingen 'config.yml' , bruker forvalg."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1274,7 +1274,7 @@ msgstr "Ingen innsendelse angitt for {versionName} i {linedesc}."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "No config.yml found, using defaults." msgid "No config.yml found, using defaults."
msgstr "Fant ingen 'config.py' , bruker forvalg." msgstr "Fant ingen 'config.yml' , bruker forvalg."
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "No fingerprint in URL." msgid "No fingerprint in URL."
@ -1303,8 +1303,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Inget behov for å spesifisere at programmet er for Android" msgstr "Inget behov for å spesifisere at programmet er for Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Inget valg satt. Rediger din config.py og sett minst én av disse:" msgstr "Inget valg satt. Rediger din config.yml og sett minst én av disse:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1353,7 +1353,7 @@ msgid "Nothing to do for {appid}."
msgstr "Ingenting å gjøre for {appid}." msgstr "Ingenting å gjøre for {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1847,13 +1847,13 @@ msgstr "Denne pakkebrønnen har allerede lokal metadata: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
#, fuzzy #, fuzzy
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "For å bruke AWS-spann, må \"awssecretkey\" og \"awsaccesskeyid\" også være satt i config.py." msgstr "For å bruke AWS-spann, må \"awssecretkey\" og \"awsaccesskeyid\" også være satt i config.yml."
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
#, fuzzy #, fuzzy
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "For å bruke AWS-spann, må \"awssecretkey\" og \"awsaccesskeyid\" også være satt i config.py." msgstr "For å bruke AWS-spann, må \"awssecretkey\" og \"awsaccesskeyid\" også være satt i config.yml."
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "URL must start with https:// or http://" msgid "URL must start with https:// or http://"
@ -2800,8 +2800,8 @@ msgstr "{file} er tom eller skadet!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" finnes ikke. Rett det i config.py." msgstr "{name} \"{path}\" finnes ikke. Rett det i config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -132,7 +132,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -144,7 +144,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -152,7 +152,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -160,7 +160,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1772,7 +1772,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2698,7 +2698,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -148,8 +148,8 @@ msgid "%s option does not take a value"
msgstr "%s opcja nie przyjmuje wartości" msgstr "%s opcja nie przyjmuje wartości"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' nie znaleziono w config.py!" msgstr "'keypass' nie znaleziono w config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -160,24 +160,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "\"keystore\" nie ma, a \"smartcardoptions\" jest puste!" msgstr "\"keystore\" nie ma, a \"smartcardoptions\" jest puste!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'Plik kluczy' nie został znaleziony w pliku config.py!" msgstr "'Plik kluczy' nie został znaleziony w pliku config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' nie znaleziono w config.yml!" msgstr "'keystore' nie znaleziono w config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' nie znaleziono w config.py!" msgstr "'keystorepass' nie znaleziono w config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' nie znaleziono w config.yml!" msgstr "'keystorepass' nie znaleziono w config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' nie znaleziono w config.py!" msgstr "'repo_keyalias' nie znaleziono w config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -189,8 +189,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'wymagane' jest nieprawidłowym argumentem dla pozycji" msgstr "'wymagane' jest nieprawidłowym argumentem dla pozycji"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' nie jest ustawiony w 'config.py'!" msgstr "'sdk_path' nie jest ustawiony w 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1219,8 +1219,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Nazwa '%s' jest nazwą automatyczną - usuń ją" msgstr "Nazwa '%s' jest nazwą automatyczną - usuń ją"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Nie znaleziono pliku 'config.py', używając wartości domyślnych." msgstr "Nie znaleziono pliku 'config.yml', używając wartości domyślnych."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1268,8 +1268,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Nie musisz określać, że aplikacja jest przeznaczona dla Androida" msgstr "Nie musisz określać, że aplikacja jest przeznaczona dla Androida"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Brak opcji! Edytuj plik config.py, aby ustawić co najmniej jedno z poniższych:" msgstr "Brak opcji! Edytuj plik config.yml, aby ustawić co najmniej jedno z poniższych:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1318,8 +1318,8 @@ msgid "Nothing to do for {appid}."
msgstr "Nic nie robić w {appid}." msgstr "Nic nie robić w {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Teraz ustaw je w config.py:" msgstr "Teraz ustaw je w config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1795,8 +1795,8 @@ msgid "This repo already has local metadata: %s"
msgstr "To repo ma już lokalne metadane: %s" msgstr "To repo ma już lokalne metadane: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Aby użyć awsbucket, awssecretkey i awsaccesskeyid muszą być również ustawione w config.py!" msgstr "Aby użyć awsbucket, awssecretkey i awsaccesskeyid muszą być również ustawione w config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2724,8 +2724,8 @@ msgstr "{file} jest pusty lub uszkodzony!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" nie istnieje! Popraw go w config.py." msgstr "{name} \"{path}\" nie istnieje! Popraw go w config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -144,8 +144,8 @@ msgid "%s option does not take a value"
msgstr "opção %s não leva um valor" msgstr "opção %s não leva um valor"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' não foi encontrada em config.py!" msgstr "'keypass' não foi encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -156,24 +156,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazio!" msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazio!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' não encontrada em config.py!" msgstr "'keystore' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' não foi encontrada em config.yml!" msgstr "'keystore' não foi encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' não encontrada em config.py!" msgstr "'keystorepass' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' não foi encontrada em config.yml!" msgstr "'keystorepass' não foi encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' não encontrada em config.py!" msgstr "'repo_keyalias' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -185,8 +185,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' é um argumento inválido para posicionadores" msgstr "'required' é um argumento inválido para posicionadores"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' não definido em 'config.py'!" msgstr "'sdk_path' não definido em 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1213,8 +1213,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "O nome '%s' é apenas o nome automático - remover" msgstr "O nome '%s' é apenas o nome automático - remover"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "'config.py' não encontrado, utilizando as predefinições." msgstr "'config.yml' não encontrado, utilizando as predefinições."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1262,8 +1262,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Não há necessidade de especificar que o app é para Android" msgstr "Não há necessidade de especificar que o app é para Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Sem opção definida! Edite seu config.py para definir pelo menos um destes:" msgstr "Sem opção definida! Edite seu config.yml para definir pelo menos um destes:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1312,12 +1312,12 @@ msgid "Nothing to do for {appid}."
msgstr "Nada a fazer para {appid}." msgstr "Nada a fazer para {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Agora configure estes em config.py:" msgstr "Agora configure estes em config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
msgstr "Agora, configure estes em config.py:" msgstr "Agora, configure estes em config.yml:"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode #. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
@ -1787,8 +1787,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Este repositório já tem metadados locais: %s" msgstr "Este repositório já tem metadados locais: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.py!" msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2713,8 +2713,8 @@ msgstr "{file} está em branco ou corrompido!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" não existe! Corrija-o no config.py." msgstr "{name} \"{path}\" não existe! Corrija-o no config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -150,8 +150,8 @@ msgid "%s option does not take a value"
msgstr "opção %s não leva um valor" msgstr "opção %s não leva um valor"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' não foi encontrada em config.py!" msgstr "'keypass' não foi encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -162,24 +162,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazia!" msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazia!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' não encontrada em config.py!" msgstr "'keystore' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "\"keystore\" não encontrada em config.yml!" msgstr "\"keystore\" não encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' não encontrada em config.py!" msgstr "'keystorepass' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "\"keystorepass\" não encontrada em config.yml!" msgstr "\"keystorepass\" não encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' não encontrada em config.py!" msgstr "'repo_keyalias' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -191,8 +191,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' é um argumento inválido para posicionadores" msgstr "'required' é um argumento inválido para posicionadores"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' não definido em 'config.py'!" msgstr "'sdk_path' não definido em 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1219,8 +1219,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "O nome '%s' é apenas o nome automático. Remova-o!" msgstr "O nome '%s' é apenas o nome automático. Remova-o!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Nenhum 'config.py' encontrado, usando padrões." msgstr "Nenhum 'config.yml' encontrado, usando padrões."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1268,8 +1268,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Não há necessidade de especificar que é um aplicativo para Android" msgstr "Não há necessidade de especificar que é um aplicativo para Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Nenhuma opção definida! Edite seu 'config.py' para definir pelo menos um destes:" msgstr "Nenhuma opção definida! Edite seu 'config.yml' para definir pelo menos um destes:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1318,8 +1318,8 @@ msgid "Nothing to do for {appid}."
msgstr "Nada a fazer para {appid}." msgstr "Nada a fazer para {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Agora defina estes em config.py:" msgstr "Agora defina estes em config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1793,8 +1793,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Este repositório já tem metadados locais: %s" msgstr "Este repositório já tem metadados locais: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.py!" msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2719,8 +2719,8 @@ msgstr "o {file} está vazio ou está corrompido!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" não existe! Corrija-o no config.py." msgstr "{name} \"{path}\" não existe! Corrija-o no config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -147,8 +147,8 @@ msgid "%s option does not take a value"
msgstr "opção %s não leva um valor" msgstr "opção %s não leva um valor"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' não foi encontrada em config.py!" msgstr "'keypass' não foi encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -159,24 +159,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazio!" msgstr "\"keystore\" é NONE e \"smartcardoptions\" está vazio!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' não encontrada em config.py!" msgstr "'keystore' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' não foi encontrada em config.yml!" msgstr "'keystore' não foi encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' não encontrada em config.py!" msgstr "'keystorepass' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' não foi encontrada em config.yml!" msgstr "'keystorepass' não foi encontrada em config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' não encontrada em config.py!" msgstr "'repo_keyalias' não encontrada em config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -188,8 +188,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' é um argumento inválido para posicionadores" msgstr "'required' é um argumento inválido para posicionadores"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' não definido em 'config.py'!" msgstr "'sdk_path' não definido em 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1216,8 +1216,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "O nome '%s' é apenas o nome automático - remover" msgstr "O nome '%s' é apenas o nome automático - remover"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "'config.py' não encontrado, utilizando as predefinições." msgstr "'config.yml' não encontrado, utilizando as predefinições."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1265,8 +1265,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Não há necessidade de especificar que o app é para Android" msgstr "Não há necessidade de especificar que o app é para Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Sem opção definida! Edite seu config.py para definir pelo menos um destes:" msgstr "Sem opção definida! Edite seu config.yml para definir pelo menos um destes:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1315,12 +1315,12 @@ msgid "Nothing to do for {appid}."
msgstr "Nada a fazer para {appid}." msgstr "Nada a fazer para {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Agora configure estes em config.py:" msgstr "Agora configure estes em config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
msgstr "Agora, configure estes em config.py:" msgstr "Agora, configure estes em config.yml:"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode #. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
@ -1790,8 +1790,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Este repositório já tem metadados locais: %s" msgstr "Este repositório já tem metadados locais: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.py!" msgstr "Para usar awsbucket, os awssecretkey e awsaccesskeyid também devem ser definidos no config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2716,8 +2716,8 @@ msgstr "{file} está em branco ou corrompido!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" não existe! Corrija-o no config.py." msgstr "{name} \"{path}\" não existe! Corrija-o no config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1199,7 +1199,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1248,7 +1248,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1298,7 +1298,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1774,7 +1774,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2703,7 +2703,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -153,8 +153,8 @@ msgid "%s option does not take a value"
msgstr "%s параметр не принимает значений" msgstr "%s параметр не принимает значений"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "В config.py нет переменной 'keypass'!" msgstr "В config.yml нет переменной 'keypass'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -165,24 +165,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "Значение 'keystore` — NONE, но 'smartcardoptions' не задан!" msgstr "Значение 'keystore` — NONE, но 'smartcardoptions' не задан!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "В config.py нет переменной 'keystore'!" msgstr "В config.yml нет переменной 'keystore'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' не найден в config.yml!" msgstr "'keystore' не найден в config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "В config.py нет переменной 'keystorepass'!" msgstr "В config.yml нет переменной 'keystorepass'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' не найден в config.yml!" msgstr "'keystorepass' не найден в config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "В config.py нет переменной 'repo_ keyalias'!" msgstr "В config.yml нет переменной 'repo_ keyalias'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -194,8 +194,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' не годится в качестве позиционного аргумента" msgstr "'required' не годится в качестве позиционного аргумента"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "В config.py не определен 'sdk_path'!" msgstr "В config.yml не определен 'sdk_path'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1223,8 +1223,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Удалите автоматически сгенерированное имя приложения '%s'" msgstr "Удалите автоматически сгенерированное имя приложения '%s'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Файл 'config.py' не обнаружен. Используется конфигурация по умолчанию." msgstr "Файл 'config.yml' не обнаружен. Используется конфигурация по умолчанию."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1272,8 +1272,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Указывать в описании, что приложение для Android, не обязательно. Других здесь не держат" msgstr "Указывать в описании, что приложение для Android, не обязательно. Других здесь не держат"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Недостаточно опций сборки! Настройте как минимум вот эти (в config.py):" msgstr "Недостаточно опций сборки! Настройте как минимум вот эти (в config.yml):"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1322,8 +1322,8 @@ msgid "Nothing to do for {appid}."
msgstr "Автоматические обновления для {appid} недоступны." msgstr "Автоматические обновления для {appid} недоступны."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Определите эти переменные в config.py:" msgstr "Определите эти переменные в config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1798,8 +1798,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Локальная копия метаданных репозитория уже существует: %s" msgstr "Локальная копия метаданных репозитория уже существует: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Необходимо определить переменные awsbucket, awssecretkey и awsaccesskeyid в config.py!" msgstr "Необходимо определить переменные awsbucket, awssecretkey и awsaccesskeyid в config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2727,8 +2727,8 @@ msgstr "{file} пустой или повреждённый!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name}: неверный путь \"{path}\"! Поправьте его в config.py." msgstr "{name}: неверный путь \"{path}\"! Поправьте его в config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -132,7 +132,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -144,7 +144,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -152,7 +152,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -160,7 +160,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1773,7 +1773,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2702,7 +2702,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -145,8 +145,8 @@ msgid "%s option does not take a value"
msgstr "Mundësia %s smerr ndonjë vlerë" msgstr "Mundësia %s smerr ndonjë vlerë"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "Su gjet 'keypass' në config.py!" msgstr "Su gjet 'keypass' në config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -157,24 +157,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' është NONE dhe 'smartcardoptions' është e zbrazët!" msgstr "'keystore' është NONE dhe 'smartcardoptions' është e zbrazët!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "Su gjet 'keystore' në config.py!" msgstr "Su gjet 'keystore' në config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "Su gjet 'keystore' në config.yml!" msgstr "Su gjet 'keystore' në config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "Su gjet 'keystorepass' te config.py!" msgstr "Su gjet 'keystorepass' te config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "Su gjet 'keystorepass' te config.yml!" msgstr "Su gjet 'keystorepass' te config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "Su gjet 'repo_keyalias' te config.py!" msgstr "Su gjet 'repo_keyalias' te config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -186,8 +186,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' është argument i pavlefshëm për pozicionalë" msgstr "'required' është argument i pavlefshëm për pozicionalë"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' te 'config.py' sështë ujdisur!" msgstr "'sdk_path' te 'config.yml' sështë ujdisur!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1214,8 +1214,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Emri '%s' është thjesht emër i automatizuar - hiqeni" msgstr "Emri '%s' është thjesht emër i automatizuar - hiqeni"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Su gjet 'config.py', po përdoren parazgjedhjet." msgstr "Su gjet 'config.yml', po përdoren parazgjedhjet."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1237,7 +1237,7 @@ msgstr "Te {linedesc} ska parashtrim të specifikuar për {versionName}"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "No config.yml found, using defaults." msgid "No config.yml found, using defaults."
msgstr "Su gjet 'config.py', po përdoren parazgjedhjet." msgstr "Su gjet 'config.yml', po përdoren parazgjedhjet."
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "No fingerprint in URL." msgid "No fingerprint in URL."
@ -1264,8 +1264,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Ska nevojë të specifikohet që aplikacioni është për Android" msgstr "Ska nevojë të specifikohet që aplikacioni është për Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Ska mundësi të ujdisur! Përpunoni config.py tuaj që të ujdisni të paktën një prej:" msgstr "Ska mundësi të ujdisur! Përpunoni config.yml tuaj që të ujdisni të paktën një prej:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1314,13 +1314,13 @@ msgid "Nothing to do for {appid}."
msgstr "Ska çbëhet për {appid}." msgstr "Ska çbëhet për {appid}."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Tani, ujdisini këto te config.py:" msgstr "Tani, ujdisini këto te config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
#, fuzzy #, fuzzy
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
msgstr "Tani, ujdisini këto te config.py:" msgstr "Tani, ujdisini këto te config.yml:"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode #. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
@ -1790,13 +1790,13 @@ msgid "This repo already has local metadata: %s"
msgstr "Kjo depo ka tashmë tejtëdhëna vendore: %s" msgstr "Kjo depo ka tashmë tejtëdhëna vendore: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Për të përdorur awsbucket, te config.py duhen ujdisur edhe awssecretkey dhe awsaccesskey!" msgstr "Për të përdorur awsbucket, te config.yml duhen ujdisur edhe awssecretkey dhe awsaccesskey!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
#, fuzzy #, fuzzy
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Për të përdorur awsbucket, te config.py duhen ujdisur edhe awssecretkey dhe awsaccesskey!" msgstr "Për të përdorur awsbucket, te config.yml duhen ujdisur edhe awssecretkey dhe awsaccesskey!"
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "URL must start with https:// or http://" msgid "URL must start with https:// or http://"
@ -2717,8 +2717,8 @@ msgstr "{file} është e zbrazët ose e dëmtuar!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" sekziston! Ndreqeni te config.py." msgstr "{name} \"{path}\" sekziston! Ndreqeni te config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1199,7 +1199,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1248,7 +1248,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1298,7 +1298,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1773,7 +1773,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2699,7 +2699,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -144,8 +144,8 @@ msgid "%s option does not take a value"
msgstr "%s seçeneği bir değer almaz" msgstr "%s seçeneği bir değer almaz"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' config.py içinde bulunamadı!" msgstr "'keypass' config.yml içinde bulunamadı!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -156,24 +156,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' seçeneği NONE ve 'smartcardoptions' seçeneği boş!" msgstr "'keystore' seçeneği NONE ve 'smartcardoptions' seçeneği boş!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' config.py içinde bulunamadı!" msgstr "'keystore' config.yml içinde bulunamadı!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' config.yml içinde bulunamadı!" msgstr "'keystore' config.yml içinde bulunamadı!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' config.py içinde bulunamadı!" msgstr "'keystorepass' config.yml içinde bulunamadı!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' config.yml içinde bulunamadı!" msgstr "'keystorepass' config.yml içinde bulunamadı!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' config.py içinde bulunamadı!" msgstr "'repo_keyalias' config.yml içinde bulunamadı!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -185,8 +185,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' positionals için geçersiz bir argüman" msgstr "'required' positionals için geçersiz bir argüman"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' 'config.py' içinde ayarlı değil!" msgstr "'sdk_path' 'config.yml' içinde ayarlı değil!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1213,8 +1213,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Ad '%s' yalnızca kendiliğinden bir ad - kaldırın" msgstr "Ad '%s' yalnızca kendiliğinden bir ad - kaldırın"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "'config.py' bulunamadı, öntanımlı değerler kullanılıyor." msgstr "'config.yml' bulunamadı, öntanımlı değerler kullanılıyor."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1262,8 +1262,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Uygulamanın Android için olduğunu belirtmeye gerek yok" msgstr "Uygulamanın Android için olduğunu belirtmeye gerek yok"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Ayarlı seçenek yok! Sunlardan en az birini ayarlamak için config.py dosyanızı düzenleyin:" msgstr "Ayarlı seçenek yok! Sunlardan en az birini ayarlamak için config.yml dosyanızı düzenleyin:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1312,8 +1312,8 @@ msgid "Nothing to do for {appid}."
msgstr "{appid} için yapılacak işlem yok." msgstr "{appid} için yapılacak işlem yok."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Şimdi bunları config.py içinde ayarlayın:" msgstr "Şimdi bunları config.yml içinde ayarlayın:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1787,8 +1787,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Bu deponun zaten yerel üst verisi var: %s" msgstr "Bu deponun zaten yerel üst verisi var: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Awsbucket kullanmak için, awssecretkey ve awsaccesskeyid de config.py içinde ayarlanmalı!" msgstr "Awsbucket kullanmak için, awssecretkey ve awsaccesskeyid de config.yml içinde ayarlanmalı!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2713,8 +2713,8 @@ msgstr "{file} boş veya bozuk!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" yok! config.py içinde düzeltin." msgstr "{name} \"{path}\" yok! config.yml içinde düzeltin."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -132,7 +132,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -144,7 +144,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -152,7 +152,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -160,7 +160,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -173,7 +173,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1197,7 +1197,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1246,7 +1246,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1296,7 +1296,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1771,7 +1771,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2697,7 +2697,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -133,7 +133,7 @@ msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -145,7 +145,7 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -153,7 +153,7 @@ msgid "'keystore' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -161,7 +161,7 @@ msgid "'keystorepass' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -174,7 +174,7 @@ msgid "'required' is an invalid argument for positionals"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1198,7 +1198,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1247,7 +1247,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1297,7 +1297,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1772,7 +1772,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2698,7 +2698,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -147,8 +147,8 @@ msgid "%s option does not take a value"
msgstr "%s параметр не приймає значення" msgstr "%s параметр не приймає значення"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "'keypass' не знайдено в config.py!" msgstr "'keypass' не знайдено в config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -159,24 +159,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' — NONE і 'smartcardoptions' порожній!" msgstr "'keystore' — NONE і 'smartcardoptions' порожній!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' не знайдено в config.py!" msgstr "'keystore' не знайдено в config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "'keystore' не знайдено в config.yml!" msgstr "'keystore' не знайдено в config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' не знайдено в config.py!" msgstr "'keystorepass' не знайдено в config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "'keystorepass' не знайдено в config.yml!" msgstr "'keystorepass' не знайдено в config.yml!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "'repo_keyalias' не знайдено в config.py!" msgstr "'repo_keyalias' не знайдено в config.yml!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -188,8 +188,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required' недійсний аргумент для позицій" msgstr "'required' недійсний аргумент для позицій"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'sdk_path' не встановлено в 'config.py'!" msgstr "'sdk_path' не встановлено в 'config.yml'!"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1217,8 +1217,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "Назву '%s' — створено самочинно, вилучіть її" msgstr "Назву '%s' — створено самочинно, вилучіть її"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "Не знайдено 'config.py', використовуючи типові налаштування." msgstr "Не знайдено 'config.yml', використовуючи типові налаштування."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1266,8 +1266,8 @@ msgid "No need to specify that the app is for Android"
msgstr "Не має потреби вказувати, що застосунок призначено для Android" msgstr "Не має потреби вказувати, що застосунок призначено для Android"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "Недостатньо параметрів! Змініть свій config.py, щоб встановити принаймні один з цих:" msgstr "Недостатньо параметрів! Змініть свій config.yml, щоб встановити принаймні один з цих:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1316,8 +1316,8 @@ msgid "Nothing to do for {appid}."
msgstr "Для {appid} нічого виконувати." msgstr "Для {appid} нічого виконувати."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "Тепер встановіть їх у config.py:" msgstr "Тепер встановіть їх у config.yml:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
@ -1792,8 +1792,8 @@ msgid "This repo already has local metadata: %s"
msgstr "Сховище вже має локальні метадані: %s" msgstr "Сховище вже має локальні метадані: %s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "Для використання awsbucket, awssecretkey та awsaccesskeyid також слід налаштувати config.py!" msgstr "Для використання awsbucket, awssecretkey та awsaccesskeyid також слід налаштувати config.yml!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
@ -2721,8 +2721,8 @@ msgstr "{file} порожній або пошкоджений!"
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" не існує! Виправте його в config.py." msgstr "{name} \"{path}\" не існує! Виправте його в config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format

View File

@ -149,8 +149,8 @@ msgid "%s option does not take a value"
msgstr "%s 选项不采用值" msgstr "%s 选项不采用值"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "config.py中找不到'keypass'" msgstr "config.yml中找不到'keypass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
@ -161,24 +161,24 @@ msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "'keystore' 没有赋值,'smartcardoptions' 为空!" msgstr "'keystore' 没有赋值,'smartcardoptions' 为空!"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "config.py中找不到'keypass'" msgstr "config.yml中找不到'keypass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "config.yml 中找不到'keystore'" msgstr "config.yml 中找不到'keystore'"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "config.py中找不到'keystorepass'" msgstr "config.yml中找不到'keystorepass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "config.yml 中找不到 'keystorepass'" msgstr "config.yml 中找不到 'keystorepass'"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "config.py中找不到'repo_keyalias'" msgstr "config.yml中找不到'repo_keyalias'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
@ -190,8 +190,8 @@ msgid "'required' is an invalid argument for positionals"
msgstr "'required'是无效的位置参数" msgstr "'required'是无效的位置参数"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "未在“ config.py”中设置“ sdk_path”" msgstr "未在“ config.yml”中设置“ sdk_path”"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
@ -1213,7 +1213,7 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1262,7 +1262,7 @@ msgid "No need to specify that the app is for Android"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
@ -1312,7 +1312,7 @@ msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "" msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
@ -1786,7 +1786,7 @@ msgid "This repo already has local metadata: %s"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "" msgstr ""
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
@ -2709,7 +2709,7 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "" msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py

View File

@ -140,44 +140,44 @@ msgid "%s option does not take a value"
msgstr "%s 選項不帶值" msgstr "%s 選項不帶值"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.yml!"
msgstr "config.py 找不到 'keypass'" msgstr "config.yml 找不到 'keypass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keypass' not found in config.yml!" msgid "'keypass' not found in config.yml!"
msgstr "config.py 找不到 'keypass'" msgstr "config.yml 找不到 'keypass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'keystore' is NONE and 'smartcardoptions' is blank!" msgid "'keystore' is NONE and 'smartcardoptions' is blank!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.yml!"
msgstr "config.py 找不到 'keystore'" msgstr "config.yml 找不到 'keystore'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystore' not found in config.yml!" msgid "'keystore' not found in config.yml!"
msgstr "config.py 找不到 'keystore'" msgstr "config.yml 找不到 'keystore'"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.yml!"
msgstr "config.py 找不到 'keystorepass'" msgstr "config.yml 找不到 'keystorepass'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'keystorepass' not found in config.yml!" msgid "'keystorepass' not found in config.yml!"
msgstr "config.py 找不到 'keystorepass'" msgstr "config.yml 找不到 'keystorepass'"
#: ../fdroidserver/index.py ../fdroidserver/common.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "config.py 找不到 'repo_keyalias'" msgstr "config.yml 找不到 'repo_keyalias'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'repo_keyalias' not found in config.yml!" msgid "'repo_keyalias' not found in config.yml!"
msgstr "config.py 找不到 'repo_keyalias'" msgstr "config.yml 找不到 'repo_keyalias'"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#: /usr/lib/python3.7/argparse.py #: /usr/lib/python3.7/argparse.py
@ -185,13 +185,13 @@ msgid "'required' is an invalid argument for positionals"
msgstr "這些地方的 '必填' 為無效引數" msgstr "這些地方的 '必填' 為無效引數"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "'sdk_path' not set in 'config.py'!" msgid "'sdk_path' not set in 'config.yml'!"
msgstr "'config.py' 未設定 'sdk_path'" msgstr "'config.yml' 未設定 'sdk_path'"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "'sdk_path' not set in config.yml!" msgid "'sdk_path' not set in config.yml!"
msgstr "'config.py' 未設定 'sdk_path'" msgstr "'config.yml' 未設定 'sdk_path'"
#. Translators: "build-tools" is the file name of a package from #. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be #. Google, it is part of the Android SDK. So it probably shouldn't be
@ -1218,8 +1218,8 @@ msgid "Name '%s' is just the auto name - remove it"
msgstr "名稱 '%s' 為自動產生 - 請移除它" msgstr "名稱 '%s' 為自動產生 - 請移除它"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No 'config.py' found, using defaults." msgid "No 'config.yml' found, using defaults."
msgstr "找不到 'config.py',使用預設。" msgstr "找不到 'config.yml',使用預設。"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No Android SDK found!" msgid "No Android SDK found!"
@ -1241,7 +1241,7 @@ msgstr "{linedesc} 沒有指定給 {versionName} 的提交"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, fuzzy #, fuzzy
msgid "No config.yml found, using defaults." msgid "No config.yml found, using defaults."
msgstr "找不到 'config.py',使用預設。" msgstr "找不到 'config.yml',使用預設。"
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "No fingerprint in URL." msgid "No fingerprint in URL."
@ -1269,8 +1269,8 @@ msgid "No need to specify that the app is for Android"
msgstr "不必指明該應用為 Android 版本" msgstr "不必指明該應用為 Android 版本"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
msgid "No option set! Edit your config.py to set at least one of these:" msgid "No option set! Edit your config.yml to set at least one of these:"
msgstr "未設定選項!編輯 config.py 檔,其中至少要設定一個:" msgstr "未設定選項!編輯 config.yml 檔,其中至少要設定一個:"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
msgid "No packages specified" msgid "No packages specified"
@ -1319,13 +1319,13 @@ msgid "Nothing to do for {appid}."
msgstr "{appid} 無須採取行動." msgstr "{appid} 無須採取行動."
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Now set these in config.py:" msgid "Now set these in config.yml:"
msgstr "現在設定這些在 config.py 中:" msgstr "現在設定這些在 config.yml 中:"
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
#, fuzzy #, fuzzy
msgid "Now set these in config.yml:" msgid "Now set these in config.yml:"
msgstr "現在設定這些在 config.py 中:" msgstr "現在設定這些在 config.yml 中:"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode #. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
@ -1795,13 +1795,13 @@ msgid "This repo already has local metadata: %s"
msgstr "這個軟體庫已有本地的中介資料:%s" msgstr "這個軟體庫已有本地的中介資料:%s"
#: ../fdroidserver/deploy.py ../fdroidserver/upload.py #: ../fdroidserver/deploy.py ../fdroidserver/upload.py
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.py!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "要使用 awsbucket, awssecretkey 與 awsaccesskeyid 必須在 config.py 進行設定!" msgstr "要使用 awsbucket, awssecretkey 與 awsaccesskeyid 必須在 config.yml 進行設定!"
#: ../fdroidserver/deploy.py #: ../fdroidserver/deploy.py
#, fuzzy #, fuzzy
msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!" msgid "To use awsbucket, awssecretkey and awsaccesskeyid must also be set in config.yml!"
msgstr "要使用 awsbucket, awssecretkey 與 awsaccesskeyid 必須在 config.py 進行設定!" msgstr "要使用 awsbucket, awssecretkey 與 awsaccesskeyid 必須在 config.yml 進行設定!"
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "URL must start with https:// or http://" msgid "URL must start with https:// or http://"
@ -2725,8 +2725,8 @@ msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, python-brace-format #, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py." msgid "{name} \"{path}\" does not exist! Correct it in config.yml."
msgstr "{name} \"{path}\" 不存在! 請更正 config.py." msgstr "{name} \"{path}\" 不存在! 請更正 config.yml."
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-brace-format #, python-brace-format