update: make strings translatable

This commit is contained in:
Hans-Christoph Steiner 2017-10-19 20:52:15 +02:00
parent d4865ec038
commit 927104a4e3
18 changed files with 2900 additions and 161 deletions

2
fdroid
View file

@ -51,7 +51,7 @@ commands = OrderedDict([
def print_help(): def print_help():
print(_("usage: fdroid [-h|--help|--version] <command> [<args>]")) print(_("usage: ") + _("fdroid [-h|--help|--version] <command> [<args>]"))
print("") print("")
print(_("Valid commands are:")) print(_("Valid commands are:"))
for cmd, summary in commands.items(): for cmd, summary in commands.items():

View file

@ -373,7 +373,7 @@ def resize_icon(iconpath, density):
im.save(iconpath, "PNG") im.save(iconpath, "PNG")
except Exception as e: except Exception as e:
logging.error("Failed resizing {0} - {1}".format(iconpath, e)) logging.error(_("Failed resizing {path}: {error}".format(path=iconpath, error=e)))
finally: finally:
if fp: if fp:
@ -407,10 +407,10 @@ def getsig(apkpath):
certs = [n for n in apk.namelist() if common.CERT_PATH_REGEX.match(n)] certs = [n for n in apk.namelist() if common.CERT_PATH_REGEX.match(n)]
if len(certs) < 1: if len(certs) < 1:
logging.error("Found no signing certificates on %s" % apkpath) logging.error(_("No signing certificates found in {path}").format(path=apkpath))
return None return None
if len(certs) > 1: if len(certs) > 1:
logging.error("Found multiple signing certificates on %s" % apkpath) logging.error(_("Found multiple signing certificates in {path}").format(path=apkpath))
return None return None
cert = apk.read(certs[0]) cert = apk.read(certs[0])
@ -518,9 +518,11 @@ def has_known_vulnerability(filename):
if (version.startswith('1.0.1') and len(version) > 5 and version[5] >= 'r') \ if (version.startswith('1.0.1') and len(version) > 5 and version[5] >= 'r') \
or (version.startswith('1.0.2') and len(version) > 5 and version[5] >= 'f') \ or (version.startswith('1.0.2') and len(version) > 5 and version[5] >= 'f') \
or re.match(r'[1-9]\.[1-9]\.[0-9].*', version): or re.match(r'[1-9]\.[1-9]\.[0-9].*', version):
logging.debug('"%s" contains recent %s (%s)', filename, name, version) logging.debug(_('"{path}" contains recent {name} ({version})')
.format(path=filename, name=name, version=version))
else: else:
logging.warning('"%s" contains outdated %s (%s)', filename, name, version) logging.warning(_('"{path}" contains outdated {name} ({version})')
.format(path=filename, name=name, version=version))
return True return True
break break
elif name == 'AndroidManifest.xml' or name == 'classes.dex' or name.endswith('.so'): elif name == 'AndroidManifest.xml' or name == 'classes.dex' or name.endswith('.so'):
@ -548,9 +550,9 @@ def insert_obbs(repodir, apps, apks):
""" """
def obbWarnDelete(f, msg): def obbWarnDelete(f, msg):
logging.warning(msg + f) logging.warning(msg + ' ' + f)
if options.delete_unknown: if options.delete_unknown:
logging.error("Deleting unknown file: " + f) logging.error(_("Deleting unknown file: {path}").format(path=f))
os.remove(f) os.remove(f)
obbs = [] obbs = []
@ -561,24 +563,25 @@ def insert_obbs(repodir, apps, apks):
# obbfile looks like: [main|patch].<expansion-version>.<package-name>.obb # obbfile looks like: [main|patch].<expansion-version>.<package-name>.obb
chunks = obbfile.split('.') chunks = obbfile.split('.')
if chunks[0] != 'main' and chunks[0] != 'patch': if chunks[0] != 'main' and chunks[0] != 'patch':
obbWarnDelete(f, 'OBB filename must start with "main." or "patch.": ') obbWarnDelete(f, _('OBB filename must start with "main." or "patch.":'))
continue continue
if not re.match(r'^-?[0-9]+$', chunks[1]): if not re.match(r'^-?[0-9]+$', chunks[1]):
obbWarnDelete('The OBB version code must come after "' + chunks[0] + '.": ') obbWarnDelete(f, _('The OBB version code must come after "{name}.":')
.format(name=chunks[0]))
continue continue
versionCode = int(chunks[1]) versionCode = int(chunks[1])
packagename = ".".join(chunks[2:-1]) packagename = ".".join(chunks[2:-1])
highestVersionCode = java_Integer_MIN_VALUE highestVersionCode = java_Integer_MIN_VALUE
if packagename not in currentPackageNames: if packagename not in currentPackageNames:
obbWarnDelete(f, "OBB's packagename does not match a supported APK: ") obbWarnDelete(f, _("OBB's packagename does not match a supported APK:"))
continue continue
for apk in apks: for apk in apks:
if packagename == apk['packageName'] and apk['versionCode'] > highestVersionCode: if packagename == apk['packageName'] and apk['versionCode'] > highestVersionCode:
highestVersionCode = apk['versionCode'] highestVersionCode = apk['versionCode']
if versionCode > highestVersionCode: if versionCode > highestVersionCode:
obbWarnDelete(f, 'OBB file has newer versionCode(' + str(versionCode) obbWarnDelete(f, _('OBB file has newer versionCode({integer}) than any APK:')
+ ') than any APK: ') .format(integer=str(versionCode)))
continue continue
obbsha256 = sha256sum(f) obbsha256 = sha256sum(f)
obbs.append((packagename, versionCode, obbfile, obbsha256)) obbs.append((packagename, versionCode, obbfile, obbsha256))
@ -883,13 +886,15 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
filename = os.path.join(repodir, name) filename = os.path.join(repodir, name)
name_utf8 = name.decode('utf-8') name_utf8 = name.decode('utf-8')
if filename.endswith(b'_src.tar.gz'): if filename.endswith(b'_src.tar.gz'):
logging.debug('skipping source tarball: ' + filename.decode('utf-8')) logging.debug(_('skipping source tarball: {path}')
.format(path=filename.decode('utf-8')))
continue continue
if not common.is_repo_file(filename): if not common.is_repo_file(filename):
continue continue
stat = os.stat(filename) stat = os.stat(filename)
if stat.st_size == 0: if stat.st_size == 0:
raise FDroidException(filename + ' is zero size!') raise FDroidException(_('{path} is zero size!')
.format(path=filename))
shasum = sha256sum(filename) shasum = sha256sum(filename)
usecache = False usecache = False
@ -903,10 +908,12 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
else: else:
repo_file['added'] = datetime(*a[:6]) repo_file['added'] = datetime(*a[:6])
if repo_file.get('hash') == shasum: if repo_file.get('hash') == shasum:
logging.debug("Reading " + name_utf8 + " from cache") logging.debug(_("Reading {apkfilename} from cache")
.format(apkfilename=name_utf8))
usecache = True usecache = True
else: else:
logging.debug("Ignoring stale cache data for " + name_utf8) logging.debug(_("Ignoring stale cache data for {apkfilename}")
.format(apkfilename=name_utf8))
if not usecache: if not usecache:
logging.debug(_("Processing {apkfilename}").format(apkfilename=name_utf8)) logging.debug(_("Processing {apkfilename}").format(apkfilename=name_utf8))
@ -1005,13 +1012,13 @@ def scan_apk_aapt(apk, apkfile):
if p.returncode != 0: if p.returncode != 0:
if options.delete_unknown: if options.delete_unknown:
if os.path.exists(apkfile): if os.path.exists(apkfile):
logging.error("Failed to get apk information, deleting " + apkfile) logging.error(_("Failed to get apk information, deleting {path}").format(path=apkfile))
os.remove(apkfile) os.remove(apkfile)
else: else:
logging.error("Could not find {0} to remove it".format(apkfile)) logging.error("Could not find {0} to remove it".format(apkfile))
else: else:
logging.error("Failed to get apk information, skipping " + apkfile) logging.error(_("Failed to get apk information, skipping {path}").format(path=apkfile))
raise BuildException("Invalid APK") raise BuildException(_("Invalid APK"))
for line in p.output.splitlines(): for line in p.output.splitlines():
if line.startswith("package:"): if line.startswith("package:"):
try: try:
@ -1104,18 +1111,21 @@ def scan_apk_androguard(apk, apkfile):
else: else:
if options.delete_unknown: if options.delete_unknown:
if os.path.exists(apkfile): if os.path.exists(apkfile):
logging.error("Failed to get apk information, deleting " + apkfile) logging.error(_("Failed to get apk information, deleting {path}")
.format(path=apkfile))
os.remove(apkfile) os.remove(apkfile)
else: else:
logging.error("Could not find {0} to remove it".format(apkfile)) logging.error(_("Could not find {path} to remove it")
.format(path=apkfile))
else: else:
logging.error("Failed to get apk information, skipping " + apkfile) logging.error(_("Failed to get apk information, skipping {path}")
raise BuildException("Invaild APK") .format(path=apkfile))
raise BuildException(_("Invalid APK"))
except ImportError: except ImportError:
raise FDroidException("androguard library is not installed and aapt not present") raise FDroidException("androguard library is not installed and aapt not present")
except FileNotFoundError: except FileNotFoundError:
logging.error("Could not open apk file for analysis") logging.error(_("Could not open apk file for analysis"))
raise BuildException("Invalid APK") raise BuildException(_("Invalid APK"))
apk['packageName'] = apkobject.get_package() apk['packageName'] = apkobject.get_package()
apk['versionCode'] = int(apkobject.get_androidversion_code()) apk['versionCode'] = int(apkobject.get_androidversion_code())
@ -1214,10 +1224,12 @@ def process_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk=Fal
if apkfilename in apkcache: if apkfilename in apkcache:
apk = apkcache[apkfilename] apk = apkcache[apkfilename]
if apk.get('hash') == sha256sum(apkfile): if apk.get('hash') == sha256sum(apkfile):
logging.debug("Reading " + apkfilename + " from cache") logging.debug(_("Reading {apkfilename} from cache")
.format(apkfilename=apkfilename))
usecache = True usecache = True
else: else:
logging.debug("Ignoring stale cache data for " + apkfilename) logging.debug(_("Ignoring stale cache data for {apkfilename}")
.format(apkfilename=apkfilename))
if not usecache: if not usecache:
logging.debug(_("Processing {apkfilename}").format(apkfilename=apkfilename)) logging.debug(_("Processing {apkfilename}").format(apkfilename=apkfilename))
@ -1275,10 +1287,12 @@ def process_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk=Fal
if skipapk: if skipapk:
if archive_bad_sig: if archive_bad_sig:
logging.warning('Archiving "' + apkfilename + '" with invalid signature!') logging.warning(_('Archiving {apkfilename} with invalid signature!')
.format(apkfilename=apkfilename))
move_apk_between_sections(repodir, 'archive', apk) move_apk_between_sections(repodir, 'archive', apk)
else: else:
logging.warning('Skipping "' + apkfilename + '" with invalid signature!') logging.warning(_('Skipping {apkfilename} with invalid signature!')
.format(apkfilename=apkfilename))
return True, None, False return True, None, False
apkzip = zipfile.ZipFile(apkfile, 'r') apkzip = zipfile.ZipFile(apkfile, 'r')
@ -1290,7 +1304,7 @@ def process_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk=Fal
# store timezone info # store timezone info
manifest = apkzip.getinfo('AndroidManifest.xml') manifest = apkzip.getinfo('AndroidManifest.xml')
if manifest.date_time[1] == 0: # month can't be zero if manifest.date_time[1] == 0: # month can't be zero
logging.debug('AndroidManifest.xml has no date') logging.debug(_('AndroidManifest.xml has no date'))
else: else:
dt_obj = datetime(*manifest.date_time) dt_obj = datetime(*manifest.date_time)
checkdt = dt_obj - timedelta(1) checkdt = dt_obj - timedelta(1)
@ -1425,7 +1439,8 @@ def extract_apk_icons(icon_filename, apk, apkzip, repo_dir):
empty_densities.remove(density) empty_densities.remove(density)
break break
except Exception as e: except Exception as e:
logging.warning("Failed reading {0} - {1}".format(icon_path, e)) logging.warning(_("Failed reading {path}: {error}")
.format(path=icon_path, error=e))
if apk['icons']: if apk['icons']:
apk['icon'] = icon_filename apk['icon'] = icon_filename
@ -1564,8 +1579,8 @@ def archive_old_apks(apps, apks, archapks, repodir, archivedir, defaultkeepversi
else: else:
keepversions = defaultkeepversions keepversions = defaultkeepversions
logging.debug("Checking archiving for {0} - apks:{1}, keepversions:{2}, archapks:{3}" logging.debug(_("Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, archapks:{arch}")
.format(appid, len(apks), keepversions, len(archapks))) .format(appid=appid, integer=len(apks), keep=keepversions, arch=len(archapks)))
current_app_apks = filter_apk_list_sorted(apks) current_app_apks = filter_apk_list_sorted(apks)
if len(current_app_apks) > keepversions: if len(current_app_apks) > keepversions:
@ -1626,7 +1641,7 @@ def add_apks_to_per_app_repos(repodir, apks):
apks_per_app[apk['packageName']] = apk apks_per_app[apk['packageName']] = apk
if not os.path.exists(apk['per_app_icons']): if not os.path.exists(apk['per_app_icons']):
logging.info('Adding new repo for only ' + apk['packageName']) logging.info(_('Adding new repo for only {name}').format(name=apk['packageName']))
os.makedirs(apk['per_app_icons']) os.makedirs(apk['per_app_icons'])
apkpath = os.path.join(repodir, apk['apkName']) apkpath = os.path.join(repodir, apk['apkName'])
@ -1659,7 +1674,8 @@ def create_metadata_from_template(apk):
metatxt, metatxt,
flags=re.IGNORECASE | re.MULTILINE) flags=re.IGNORECASE | re.MULTILINE)
else: else:
logging.warning(apk['packageName'] + ' does not have a name! Using package name instead.') logging.warning(_('{appid} does not have a name! Using package name instead.')
.format(appid=apk['packageName']))
metatxt = re.sub(r'^(((Auto)?Name|Summary):).*$', metatxt = re.sub(r'^(((Auto)?Name|Summary):).*$',
r'\1 ' + apk['packageName'], r'\1 ' + apk['packageName'],
metatxt, metatxt,
@ -1679,11 +1695,12 @@ def create_metadata_from_template(apk):
if 'name' in apk and apk['name'] != '': if 'name' in apk and apk['name'] != '':
app['Name'] = apk['name'] app['Name'] = apk['name']
else: else:
logging.warning(apk['packageName'] + ' does not have a name! Using package name instead.') logging.warning(_('{appid} does not have a name! Using package name instead.')
.format(appid=apk['packageName']))
app['Name'] = apk['packageName'] app['Name'] = apk['packageName']
with open(os.path.join('metadata', apk['packageName'] + '.yml'), 'w') as f: with open(os.path.join('metadata', apk['packageName'] + '.yml'), 'w') as f:
yaml.dump(app, f, default_flow_style=False) yaml.dump(app, f, default_flow_style=False)
logging.info("Generated skeleton metadata for " + apk['packageName']) logging.info(_("Generated skeleton metadata for {appid}").format(appid=apk['packageName']))
config = None config = None
@ -1710,8 +1727,8 @@ def main():
parser.add_argument("-I", "--icons", action="store_true", default=False, parser.add_argument("-I", "--icons", action="store_true", default=False,
help=_("Resize all the icons exceeding the max pixel size and exit")) help=_("Resize all the icons exceeding the max pixel size and exit"))
parser.add_argument("-e", "--editor", default="/etc/alternatives/editor", parser.add_argument("-e", "--editor", default="/etc/alternatives/editor",
help=_("Specify editor to use in interactive mode. Default ") + help=_("Specify editor to use in interactive mode. Default " +
"is /etc/alternatives/editor") "is {path}").format(path='/etc/alternatives/editor'))
parser.add_argument("-w", "--wiki", default=False, action="store_true", parser.add_argument("-w", "--wiki", default=False, action="store_true",
help=_("Update the wiki")) help=_("Update the wiki"))
parser.add_argument("--pretty", action="store_true", default=False, parser.add_argument("--pretty", action="store_true", default=False,
@ -1733,7 +1750,7 @@ def main():
config = common.read_config(options) config = common.read_config(options)
if not ('jarsigner' in config and 'keytool' in config): if not ('jarsigner' in config and 'keytool' in config):
raise FDroidException('Java JDK not found! Install in standard location or set java_paths!') raise FDroidException(_('Java JDK not found! Install in standard location or set java_paths!'))
repodirs = ['repo'] repodirs = ['repo']
if config['archive_older'] != 0: if config['archive_older'] != 0:
@ -1752,13 +1769,14 @@ def main():
for k in ['repo_icon', 'archive_icon']: for k in ['repo_icon', 'archive_icon']:
if k in config: if k in config:
if not os.path.exists(config[k]): if not os.path.exists(config[k]):
logging.critical(k + ' "' + config[k] + '" does not exist! Correct it in config.py.') logging.critical(_('{name} "{path}" does not exist! Correct it in config.py.')
.format(name=k, path=config[k]))
sys.exit(1) sys.exit(1)
# if the user asks to create a keystore, do it now, reusing whatever it can # if the user asks to create a keystore, do it now, reusing whatever it can
if options.create_key: if options.create_key:
if os.path.exists(config['keystore']): if os.path.exists(config['keystore']):
logging.critical("Cowardily refusing to overwrite existing signing key setup!") logging.critical(_("Cowardily refusing to overwrite existing signing key setup!"))
logging.critical("\t'" + config['keystore'] + "'") logging.critical("\t'" + config['keystore'] + "'")
sys.exit(1) sys.exit(1)
@ -1811,16 +1829,18 @@ def main():
create_metadata_from_template(apk) create_metadata_from_template(apk)
apps = metadata.read_metadata() apps = metadata.read_metadata()
else: else:
msg = apk['apkName'] + " (" + apk['packageName'] + ") has no metadata!" msg = _("{apkfilename} ({appid}) has no metadata!") \
.format(apkfilename=apk['apkName'], appid=apk['packageName'])
if options.delete_unknown: if options.delete_unknown:
logging.warn(msg + "\n\tdeleting: repo/" + apk['apkName']) logging.warn(msg + '\n\t' + _("deleting: repo/{apkfilename}")
.format(apkfilename=apk['apkName']))
rmf = os.path.join(repodirs[0], apk['apkName']) rmf = os.path.join(repodirs[0], apk['apkName'])
if not os.path.exists(rmf): if not os.path.exists(rmf):
logging.error("Could not find {0} to remove it".format(rmf)) logging.error(_("Could not find {path} to remove it").format(path=rmf))
else: else:
os.remove(rmf) os.remove(rmf)
else: else:
logging.warn(msg + "\n\tUse `fdroid update -c` to create it.") logging.warn(msg + '\n\t' + _("Use `fdroid update -c` to create it."))
copy_triple_t_store_metadata(apps) copy_triple_t_store_metadata(apps)
insert_obbs(repodirs[0], apps, apks) insert_obbs(repodirs[0], apps, apks)
@ -1854,7 +1874,7 @@ def main():
if os.path.isdir(repodir): if os.path.isdir(repodir):
index.make(appdict, [appid], apks, repodir, False) index.make(appdict, [appid], apks, repodir, False)
else: else:
logging.info('Skipping index generation for ' + appid) logging.info(_('Skipping index generation for {appid}').format(appid=appid))
return return
if len(repodirs) > 1: if len(repodirs) > 1:

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-07-17 18:35+0000\n" "PO-Revision-Date: 2017-07-17 18:35+0000\n"
"Last-Translator: Lobsang <lobsangsither@gmail.com>\n" "Last-Translator: Lobsang <lobsangsither@gmail.com>\n"
"Language-Team: Tibetan <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Tibetan <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -134,6 +144,11 @@ msgstr "འབྱུང་ཁུངས་ཨང་རྟགས་ནས་མཉ
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག" msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "ལྡེ་མིག་གསོག་ཉར་ཁང་ནང་རེ་པོ་མིང་རྟགས་ལྡེ་མིག་བཀོད་པའི་གསང་མིང་།" msgstr "ལྡེ་མིག་གསོག་ཉར་ཁང་ནང་རེ་པོ་མིང་རྟགས་ལྡེ་མིག་བཀོད་པའི་གསང་མིང་།"
@ -174,6 +189,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -183,6 +202,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -236,6 +260,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "མཉེན་ཆས་རྣམས་གསར་བསྒྱུར་བྱས་མིན་གཟིགས་ཞིབ་གནང་དང་།" msgstr "མཉེན་ཆས་རྣམས་གསར་བསྒྱུར་བྱས་མིན་གཟིགས་ཞིབ་གནང་དང་།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "ཆ་ཚང་འཚག་རྒྱབ་ཚར་བའི་རྗེས་སུ་གཙང་མ་བཟོས།" msgstr "ཆ་ཚང་འཚག་རྒྱབ་ཚར་བའི་རྗེས་སུ་གཙང་མ་བཟོས།"
@ -274,6 +305,15 @@ msgstr "བསྒྱུར་བ་གཏོང་བར་མོས་མཐུ
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -286,6 +326,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "ལྡེ་མིག་གསོག་ཉར་ཁག་གི་ནང་ལ་རེ་པོ་མིང་རྟགས་བཀོད་པའི་ལྡེ་མིག་གཅིག་བཟོས།" msgstr "ལྡེ་མིག་གསོག་ཉར་ཁག་གི་ནང་ལ་རེ་པོ་མིང་རྟགས་བཀོད་པའི་ལྡེ་མིག་གཅིག་བཟོས།"
@ -329,6 +373,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "APKs དང/ཡང་ནOBBs གཉིས་ལ་རེ་པོ་ནས་འགྲེལ་ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལོ་རྒྱུས་མེད་པ་རྣམས་སུབས།" msgstr "APKs དང/ཡང་ནOBBs གཉིས་ལ་རེ་པོ་ནས་འགྲེལ་ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལོ་རྒྱུས་མེད་པ་རྣམས་སུབས།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -412,6 +461,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -426,6 +485,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -471,6 +540,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -480,6 +554,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "བོར་བརླག་ཏུ་སོང་བའི་ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལོ་རྒྱུས་ཡང་སྐྱར་བཟོས།"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -513,6 +592,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -552,6 +636,10 @@ msgstr "རེ་པོ་HTTP ཞབས་ཞུ་འཕྲུལ་ཆས་
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "གསར་བསྒྱུར་བྱེད་དགོས་པའི་རིགས་ལ་སྦས་གསང་མེད་པའི་ཐོག་ནས་གསུངས་རོགས།" msgstr "གསར་བསྒྱུར་བྱེད་དགོས་པའི་རིགས་ལ་སྦས་གསང་མེད་པའི་ཐོག་ནས་གསུངས་རོགས།"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -576,7 +664,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -675,6 +763,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -698,6 +791,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "མཉེས་ཆས་གསོག་ཉར་ཁང་དང་མི་འདྲ་པ་ཡོད་པ་ཁོ་ནར་པར་ཤུས་བྱེད།" msgstr "མཉེས་ཆས་གསོག་ཉར་ཁང་དང་མི་འདྲ་པ་ཡོད་པ་ཁོ་ནར་པར་ཤུས་བྱེད།"
@ -822,6 +928,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -926,6 +1037,16 @@ msgstr "འབྱུང་ཁུངས་ཨ་རྟགས་དང་དཀའ
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -953,6 +1074,11 @@ msgstr "སྒྲིག་བཀོད་པར་དམིགས་སྟོན
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "སྒྲིག་བཀོད་པར་དམིགས་སྟོན་བྱས་ནས་ལན་འདེབས་ཀྱི་ཚུལ་འདི་བེད་སྤྱོད་བྱེད་ སོར་བཞག %s 1" msgstr "སྒྲིག་བཀོད་པར་དམིགས་སྟོན་བྱས་ནས་ལན་འདེབས་ཀྱི་ཚུལ་འདི་བེད་སྤྱོད་བྱེད་ སོར་བཞག %s 1"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "སྒྲིག་བཀོད་པར་དམིགས་སྟོན་བྱས་ནས་ལན་འདེབས་ཀྱི་ཚུལ་འདི་བེད་སྤྱོད་བྱེད་ སོར་བཞག %s 1"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "ང་ཚོས་ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་འདིའི་སྒང་ལ་འཁོར་སྐྱོད་བྱེད་བཞིན་གསལ་སྟོན་བྱེད།" msgstr "ང་ཚོས་ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་འདིའི་སྒང་ལ་འཁོར་སྐྱོད་བྱེད་བཞིན་གསལ་སྟོན་བྱེད།"
@ -979,6 +1105,11 @@ msgstr ""
"ཚོད་ལྟའི་ཚུལ་-གལ་སྲིད་ཡིག་ཚགས་འདི་སྔོན་ཚོད་ནས་ཡོད་ནའང་། ཡིག་ཚགས་འདི་སྐབས་ཕྲལ་གྱི་ཕྱོགས་དེབ་ཁོ་ནའི་" "ཚོད་ལྟའི་ཚུལ་-གལ་སྲིད་ཡིག་ཚགས་འདི་སྔོན་ཚོད་ནས་ཡོད་ནའང་། ཡིག་ཚགས་འདི་སྐབས་ཕྲལ་གྱི་ཕྱོགས་དེབ་ཁོ་ནའི་"
"ནང་ལ་བླུགས་པ་དང་རྟག་ཏུ་ཐོན་སྐྱེད་བཟོས།" "ནང་ལ་བླུགས་པ་དང་རྟག་ཏུ་ཐོན་སྐྱེད་བཟོས།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "གཞི་རྩའི་URL དེ་རེ་པོ་ཡི་ཐོ་གཞུང་བཀོད་པའི་ཆེད་དུ་(སོར་བཞག: https://f-droid.org)" msgstr "གཞི་རྩའི་URL དེ་རེ་པོ་ཡི་ཐོ་གཞུང་བཀོད་པའི་ཆེད་དུ་(སོར་བཞག: https://f-droid.org)"
@ -1102,6 +1233,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་བེད་སྤྱོད་བྱེད།" msgstr "ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་བེད་སྤྱོད་བྱེད།"
@ -1224,6 +1359,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s" msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1247,6 +1387,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "བེད་སྤྱོད་: ཨེཕ་རོཌ་ [-h|-རོགས་པ་|--ཐོན་རིམ་] <command> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1419,6 +1564,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1444,7 +1594,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1463,11 +1613,31 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases" msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-07-16 20:06+0000\n" "PO-Revision-Date: 2017-07-16 20:06+0000\n"
"Last-Translator: Claus Rüdinger <Mail-an-CR@web.de>\n" "Last-Translator: Claus Rüdinger <Mail-an-CR@web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/f-droid/" "Language-Team: German <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Eine neue Anwendung aus ihrem Quellcode hinzufügen"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen" msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Pseudonym des Repository-Signierchlüssels im Schlüsselspeicher" msgstr "Pseudonym des Repository-Signierchlüssels im Schlüsselspeicher"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Auf Aktualisierungen für Anwendungen prüfen" msgstr "Auf Aktualisierungen für Anwendungen prüfen"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Nach Abschluss aller Scans bereinigen" msgstr "Nach Abschluss aller Scans bereinigen"
@ -280,6 +311,15 @@ msgstr "Änderungen übergeben"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -292,6 +332,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "Repository-Signierschlüssel in einem Schlüsselspeicher erstellen" msgstr "Repository-Signierschlüssel in einem Schlüsselspeicher erstellen"
@ -335,6 +379,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "APKs und/oder OBBs ohne Metadaten aus dem Repository löschen" msgstr "APKs und/oder OBBs ohne Metadaten aus dem Repository löschen"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -420,6 +469,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -434,6 +493,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -479,6 +548,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -488,6 +562,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Gerüst für fehlende Metadaten-Dateien erstellen"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -521,6 +600,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -560,6 +644,10 @@ msgstr "Mit dem HTTP-Server des Repository kommunizieren"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "Angelegenheiten, die Aktualisierungen erfordern, interaktiv abfragen." msgstr "Angelegenheiten, die Aktualisierungen erfordern, interaktiv abfragen."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -584,7 +672,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -683,6 +771,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -706,6 +799,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Nur Unterschiede zum Play Store ausgeben" msgstr "Nur Unterschiede zum Play Store ausgeben"
@ -834,6 +940,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -945,6 +1056,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -979,6 +1100,13 @@ msgstr ""
"Editor festlegen, der im interaktiven Modus verwendet werden soll. Standard " "Editor festlegen, der im interaktiven Modus verwendet werden soll. Standard "
"%s" "%s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
"Editor festlegen, der im interaktiven Modus verwendet werden soll. Standard "
"%s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "Festlegen, dass F-Droid auf dem Build-Server läuft" msgstr "Festlegen, dass F-Droid auf dem Build-Server läuft"
@ -1005,6 +1133,11 @@ msgstr ""
"Testmodus - Ausgabe nur ins tmp-Verzeichnis einfügen, immer erstellen, " "Testmodus - Ausgabe nur ins tmp-Verzeichnis einfügen, immer erstellen, "
"selbst wenn die Ausgabe bereits vorhanden ist." "selbst wenn die Ausgabe bereits vorhanden ist."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1129,6 +1262,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Build-Server verwenden" msgstr "Build-Server verwenden"
@ -1251,6 +1388,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1275,6 +1417,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "Sprachgebrauch: fdroid [-h|--help|--version] <command> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1447,6 +1594,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1472,7 +1624,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1492,11 +1644,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-07-03 15:20+0000\n" "PO-Revision-Date: 2017-07-03 15:20+0000\n"
"Last-Translator: José Rodrigo Baires Quezada <rbaires@irex.org>\n" "Last-Translator: José Rodrigo Baires Quezada <rbaires@irex.org>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Spanish <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Añadir una nueva aplicación desde su código fuente"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Añadir las firmas gpg para los paquetes en el repositorio" msgstr "Añadir las firmas gpg para los paquetes en el repositorio"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Alias de la clave de firma de repositorio en el depósitio de claves" msgstr "Alias de la clave de firma de repositorio en el depósitio de claves"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Buscar actualizaciones de aplicaciones" msgstr "Buscar actualizaciones de aplicaciones"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Limpiar después de que todos los análisis hayan finalizado" msgstr "Limpiar después de que todos los análisis hayan finalizado"
@ -278,6 +309,15 @@ msgstr "Aplicar cambios"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -290,6 +330,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "Cree una clave de firmado de repositorios en un llavero de claves" msgstr "Cree una clave de firmado de repositorios en un llavero de claves"
@ -333,6 +377,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Borrar del repositorio archivos APK y/o OBB sin metadatos" msgstr "Borrar del repositorio archivos APK y/o OBB sin metadatos"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -419,6 +468,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -433,6 +492,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -478,6 +547,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -487,6 +561,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Crear esqueleto de metadatos de archivos que faltan"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -520,6 +599,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -560,6 +644,10 @@ msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
"Pregunte de forma interactiva sobre temas que necesitan una actualización." "Pregunte de forma interactiva sobre temas que necesitan una actualización."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -584,7 +672,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -683,6 +771,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -706,6 +799,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Solo imprimir diferencias con el Play Store" msgstr "Solo imprimir diferencias con el Play Store"
@ -830,6 +936,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -940,6 +1051,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -969,6 +1090,12 @@ msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
"Especifique el editor para utilizar en modo interactivo. Predeterminado %s" "Especifique el editor para utilizar en modo interactivo. Predeterminado %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
"Especifique el editor para utilizar en modo interactivo. Predeterminado %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "Especificar que estamos ejecutando en el servidor de compilación" msgstr "Especificar que estamos ejecutando en el servidor de compilación"
@ -995,6 +1122,11 @@ msgstr ""
"Modo de prueba: ponga la salida solo en el directorio tmp y siga " "Modo de prueba: ponga la salida solo en el directorio tmp y siga "
"desarrollando, incluso si la salida ya existe." "desarrollando, incluso si la salida ya existe."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1119,6 +1251,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Use un servidor de compilación" msgstr "Use un servidor de compilación"
@ -1245,6 +1381,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1269,6 +1410,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "Uso: fdroid [-h|--help|--version] <command> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1441,6 +1587,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1466,7 +1617,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1486,11 +1637,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-10-01 01:48+0000\n" "PO-Revision-Date: 2017-10-01 01:48+0000\n"
"Last-Translator: who cares? <facevedo@disroot.org>\n" "Last-Translator: who cares? <facevedo@disroot.org>\n"
"Language-Team: Spanish (Argentina) <https://hosted.weblate.org/projects/f-" "Language-Team: Spanish (Argentina) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Agregar una aplicación nueva desde su código fuente"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Agregar firmas GPG a paquetes en el repositorio" msgstr "Agregar firmas GPG a paquetes en el repositorio"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Alias de la llave de firmado del repositorio en el almacén de llaves" msgstr "Alias de la llave de firmado del repositorio en el almacén de llaves"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Buscar actualizaciones de las aplicaciones" msgstr "Buscar actualizaciones de las aplicaciones"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Limpiar luego de que todos los escaneos hayan terminado" msgstr "Limpiar luego de que todos los escaneos hayan terminado"
@ -276,6 +307,15 @@ msgstr "Cometer cambios"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -288,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
#, fuzzy #, fuzzy
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
@ -332,6 +376,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Borrar archivos APK y/o OBBs sin metadatos del repositorio" msgstr "Borrar archivos APK y/o OBBs sin metadatos del repositorio"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -420,6 +469,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -434,6 +493,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -480,6 +549,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -489,6 +563,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Crear plantilla de metadatos de los archivos faltantes"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -522,6 +601,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -562,6 +646,10 @@ msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
"Preguntar de forma interactiva sobre las cosas necesarias a actualizar." "Preguntar de forma interactiva sobre las cosas necesarias a actualizar."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -586,7 +674,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -685,6 +773,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -708,6 +801,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Solo mostrar las diferencias con el Plays Store" msgstr "Solo mostrar las diferencias con el Plays Store"
@ -832,6 +938,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -936,6 +1047,16 @@ msgstr "Saltear el escaneo de binarios y otros problemas en el código fuente"
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -965,6 +1086,11 @@ msgstr "Especificar el editor a usar en modo interactivo. Por defecto %s"
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "Especificar el editor a usar en modo interactivo. Por defecto %s" msgstr "Especificar el editor a usar en modo interactivo. Por defecto %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "Especificar el editor a usar en modo interactivo. Por defecto %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -991,6 +1117,11 @@ msgstr ""
"Modo prueba - pone la salida solo en el directorio temporal, y siempre " "Modo prueba - pone la salida solo en el directorio temporal, y siempre "
"construye, incluso cuando la salida ya exista." "construye, incluso cuando la salida ya exista."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1116,6 +1247,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Usar servidor de construccion" msgstr "Usar servidor de construccion"
@ -1241,6 +1376,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1265,6 +1405,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "uso: fdroid [-h|--help|--version] <comando> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1437,6 +1582,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1462,7 +1612,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1482,11 +1632,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -21,6 +21,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -57,19 +67,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -130,6 +140,11 @@ msgstr ""
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -168,6 +183,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -177,6 +196,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -231,6 +255,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -268,6 +299,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -280,6 +320,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -323,6 +367,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -406,6 +455,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -419,6 +478,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -462,6 +531,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -471,6 +545,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -504,6 +583,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -543,6 +627,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -567,7 +655,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -665,6 +753,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -688,6 +781,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -808,6 +914,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -904,6 +1015,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -930,6 +1051,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -954,6 +1080,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1076,6 +1207,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1191,6 +1326,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1215,6 +1355,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1386,6 +1530,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1411,7 +1560,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1431,11 +1580,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -5,9 +5,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: fdroidserver 0.8-135-g16dd6d28\n" "Project-Id-Version: fdroidserver 0.8-150-g4e4415d\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-13 12:47+0000\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -22,6 +22,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -58,19 +68,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -131,6 +141,11 @@ msgstr ""
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -169,6 +184,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -178,6 +197,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -232,6 +256,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -269,6 +300,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -281,6 +321,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -324,6 +368,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -407,6 +456,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -420,6 +479,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -463,6 +532,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -472,6 +546,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -505,6 +584,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -544,6 +628,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -568,7 +656,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -666,6 +754,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -689,6 +782,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -809,6 +915,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -905,6 +1016,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -931,6 +1052,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -955,6 +1081,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1077,6 +1208,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1192,6 +1327,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1216,6 +1356,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1387,6 +1531,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1412,7 +1561,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1432,11 +1581,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-10-17 11:46+0000\n" "PO-Revision-Date: 2017-10-17 11:46+0000\n"
"Last-Translator: xin <xin@riseup.net>\n" "Last-Translator: xin <xin@riseup.net>\n"
"Language-Team: French <https://hosted.weblate.org/projects/f-droid/" "Language-Team: French <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Ajouter une nouvelle application depuis son code source"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt" msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -173,6 +188,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -182,6 +201,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -237,6 +261,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Vérifier les mises à jour pour les applications" msgstr "Vérifier les mises à jour pour les applications"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -277,6 +308,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -289,6 +329,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -332,6 +376,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Supprimer les APK et/ou OBB sans métadonnées dans le dépôt" msgstr "Supprimer les APK et/ou OBB sans métadonnées dans le dépôt"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -415,6 +464,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -429,6 +488,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -472,6 +541,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -481,6 +555,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Créer les métadonnées de base manquantes"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -514,6 +593,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -554,6 +638,10 @@ msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
"Demander de manière interactive les choses nécessitant une mise à jour." "Demander de manière interactive les choses nécessitant une mise à jour."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -578,7 +666,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -676,6 +764,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -699,6 +792,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
#, fuzzy #, fuzzy
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
@ -822,6 +928,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -926,6 +1037,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -953,6 +1074,11 @@ msgstr "Définir l'éditeur à utiliser en mode interactif. Par défaut %s"
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "Définir l'éditeur à utiliser en mode interactif. Par défaut %s" msgstr "Définir l'éditeur à utiliser en mode interactif. Par défaut %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "Définir l'éditeur à utiliser en mode interactif. Par défaut %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -977,6 +1103,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
#, fuzzy #, fuzzy
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
@ -1101,6 +1232,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1223,6 +1358,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1247,6 +1387,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "utilisation : fdroid [-h|--help|--version] <commande> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1420,6 +1565,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1445,7 +1595,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1465,11 +1615,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-07-12 15:24+0000\n" "PO-Revision-Date: 2017-07-12 15:24+0000\n"
"Last-Translator: Roberto Albano De Rosa <robertoalbano@protonmail.com>\n" "Last-Translator: Roberto Albano De Rosa <robertoalbano@protonmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Italian <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -133,6 +143,11 @@ msgstr "Aggiungi una nuova applicazione dal suo codice sorgente"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -171,6 +186,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -180,6 +199,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +258,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Cerca gli aggiornamenti delle applicazioni" msgstr "Cerca gli aggiornamenti delle applicazioni"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -271,6 +302,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -283,6 +323,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -326,6 +370,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -409,6 +458,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -422,6 +481,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -465,6 +534,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -474,6 +548,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -507,6 +586,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -546,6 +630,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -570,7 +658,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -668,6 +756,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -691,6 +784,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -811,6 +917,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -907,6 +1018,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -933,6 +1054,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -957,6 +1083,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1079,6 +1210,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1194,6 +1329,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1218,6 +1358,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1390,6 +1534,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1415,7 +1564,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1435,11 +1584,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Kabyle (F-Droid)\n" "Project-Id-Version: Kabyle (F-Droid)\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-08-11 19:09+0100\n" "PO-Revision-Date: 2017-08-11 19:09+0100\n"
"Last-Translator: Belkacem Mohammed <belkacem77@gmail.com>\n" "Last-Translator: Belkacem Mohammed <belkacem77@gmail.com>\n"
"Language-Team: Kabyle <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Kabyle <https://hosted.weblate.org/projects/f-droid/"
@ -19,6 +19,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -55,19 +65,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -128,6 +138,11 @@ msgstr ""
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -166,6 +181,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -175,6 +194,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -229,6 +253,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -266,6 +297,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -278,6 +318,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -321,6 +365,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -404,6 +453,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -417,6 +476,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -460,6 +529,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -469,6 +543,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -502,6 +581,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -541,6 +625,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -565,7 +653,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -663,6 +751,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -686,6 +779,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -806,6 +912,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -902,6 +1013,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -928,6 +1049,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -952,6 +1078,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1074,6 +1205,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1189,6 +1324,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1213,6 +1353,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1384,6 +1528,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1409,7 +1558,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1429,11 +1578,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: fdroidserver 0.8-74-ga380b9f\n" "Project-Id-Version: fdroidserver 0.8-74-ga380b9f\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-10-17 14:20+0000\n" "PO-Revision-Date: 2017-10-17 14:20+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr "%s er ikke et godtatt bygge-felt"
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "'keypass' ble ikke funnet i config.py!" msgstr "'keypass' ble ikke funnet i config.py!"
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "'keystore' ble ikke funnet i config.py!" msgstr "'keystore' ble ikke funnet i config.py!"
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "'keystorepass' ble ikke funnet i config.py!" msgstr "'keystorepass' ble ikke funnet i config.py!"
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "'repo_keyalias' ble ikke funnet i config.py!" msgstr "'repo_keyalias' ble ikke funnet i config.py!"
@ -135,6 +145,11 @@ msgstr "Legg til et nytt program fra dets kildekode"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -176,6 +191,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -185,6 +204,11 @@ msgstr "Program finnes i '{repo}', men har en lenke til {url}"
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "Å legge til .git er ikke nødvendig" msgstr "Å legge til .git er ikke nødvendig"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -239,6 +263,13 @@ msgstr "Kategorien \"%s\" er ikke gyldig"
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Se etter programoppdateringer" msgstr "Se etter programoppdateringer"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Rydd opp etter at alle skanninger er fullførte" msgstr "Rydd opp etter at alle skanninger er fullførte"
@ -276,6 +307,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -288,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -331,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Slett APK-er og/eller OBB-er uten metadata fra pakkebrønnen" msgstr "Slett APK-er og/eller OBB-er uten metadata fra pakkebrønnen"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -414,6 +463,16 @@ msgstr "Hent ut signaturer fra APK-er"
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "Klarte ikke å hente signaturer for '{apkfilename}': {error}" msgstr "Klarte ikke å hente signaturer for '{apkfilename}': {error}"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -427,6 +486,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -470,6 +539,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -479,6 +553,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -512,6 +591,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -551,6 +635,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -575,7 +663,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -673,6 +761,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -696,6 +789,19 @@ msgstr "Ingenting å gjøre"
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "Ingenting å gjøre for {appid}." msgstr "Ingenting å gjøre for {appid}."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -816,6 +922,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr "Behandler {apkfilename}"
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -912,6 +1023,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -938,6 +1059,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -962,6 +1088,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1084,6 +1215,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1199,6 +1334,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr "Behandler {apkfilename}"
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1223,6 +1363,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1394,6 +1538,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1419,7 +1568,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1439,11 +1588,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-09-02 13:48+0000\n" "PO-Revision-Date: 2017-09-02 13:48+0000\n"
"Last-Translator: Edgar Moraes Diniz <edgar.diniz@posteo.net>\n" "Last-Translator: Edgar Moraes Diniz <edgar.diniz@posteo.net>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/f-" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Adicione um novo aplicativo a partir do seu código fonte"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Adicione assinaturas gpg para os pacotes no repositório" msgstr "Adicione assinaturas gpg para os pacotes no repositório"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Alias (apelido) da chave de assinatura do repositório na keystore" msgstr "Alias (apelido) da chave de assinatura do repositório na keystore"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Verifique se existem atualizações para os aplicativos" msgstr "Verifique se existem atualizações para os aplicativos"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Limpar depois que todos os escaneamentos terminarem" msgstr "Limpar depois que todos os escaneamentos terminarem"
@ -276,6 +307,15 @@ msgstr "Enviar mudanças"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -288,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "Criar uma chave de assinatura do repositório em uma keystore" msgstr "Criar uma chave de assinatura do repositório em uma keystore"
@ -331,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Apagar do repositório os APKs e/ou OBBs sem metadados" msgstr "Apagar do repositório os APKs e/ou OBBs sem metadados"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -417,6 +466,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -431,6 +490,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -476,6 +545,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -485,6 +559,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Criar as bases dos arquivos de metadados que estão faltando"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -518,6 +597,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -557,6 +641,10 @@ msgstr "Interagir com o servidor HTTP do repositório"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "Perguntar interativamente sobre elementos que precisam de atualização." msgstr "Perguntar interativamente sobre elementos que precisam de atualização."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -581,7 +669,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -680,6 +768,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -703,6 +796,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Apenas mostrar diferenças com a Play Store" msgstr "Apenas mostrar diferenças com a Play Store"
@ -829,6 +935,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -932,6 +1043,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -960,6 +1081,11 @@ msgstr "Especificar o editor que será usado no modo interativo. O padrão é %s
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "Especificar o editor que será usado no modo interativo. O padrão é %s" msgstr "Especificar o editor que será usado no modo interativo. O padrão é %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "Especificar o editor que será usado no modo interativo. O padrão é %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "Especificar que estamos executando no servidor de compilação" msgstr "Especificar que estamos executando no servidor de compilação"
@ -986,6 +1112,11 @@ msgstr ""
"Modo de teste - coloque a saída apenas no diretório tmp e sempre compile, " "Modo de teste - coloque a saída apenas no diretório tmp e sempre compile, "
"mesmo que a saída já exista." "mesmo que a saída já exista."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1111,6 +1242,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Usar servidor de compilação" msgstr "Usar servidor de compilação"
@ -1240,6 +1375,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1264,6 +1404,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "uso: fdroid [-h|--help|--version] <comando> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1436,6 +1581,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1461,7 +1611,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1481,11 +1631,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: none\n" "Language-Team: none\n"
@ -21,6 +21,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -57,19 +67,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -130,6 +140,11 @@ msgstr ""
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "" msgstr ""
@ -168,6 +183,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -177,6 +196,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -231,6 +255,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "" msgstr ""
@ -268,6 +299,15 @@ msgstr ""
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -280,6 +320,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "" msgstr ""
@ -323,6 +367,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -406,6 +455,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
msgid "Failed to align application" msgid "Failed to align application"
msgstr "" msgstr ""
@ -419,6 +478,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -462,6 +531,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -471,6 +545,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -504,6 +583,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -543,6 +627,10 @@ msgstr ""
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -567,7 +655,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -665,6 +753,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -688,6 +781,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "" msgstr ""
@ -808,6 +914,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -904,6 +1015,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -930,6 +1051,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "" msgstr ""
@ -954,6 +1080,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1076,6 +1207,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "" msgstr ""
@ -1191,6 +1326,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1215,6 +1355,10 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1386,6 +1530,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1411,7 +1560,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1431,11 +1580,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-06-23 14:47+0000\n" "PO-Revision-Date: 2017-06-23 14:47+0000\n"
"Last-Translator: monolifed <monolifed@gmail.com>\n" "Last-Translator: monolifed <monolifed@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Turkish <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -135,6 +145,11 @@ msgstr "Kaynak kodundan yeni bir uygulama ekle"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Depodaki paketler için GPG imzaları ekle" msgstr "Depodaki paketler için GPG imzaları ekle"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Depo imzalama anahtarının anahtar deposundaki takma adı" msgstr "Depo imzalama anahtarının anahtar deposundaki takma adı"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Uygulama güncellemelerini denetle" msgstr "Uygulama güncellemelerini denetle"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Tüm taramalar bitince temizle" msgstr "Tüm taramalar bitince temizle"
@ -276,6 +307,15 @@ msgstr "Değişiklikleri işle"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -288,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "Bir anahtar deposunda, depo imzalama anahtarı yaratır" msgstr "Bir anahtar deposunda, depo imzalama anahtarı yaratır"
@ -331,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Depodan meta verisi olmayan APKları ve/veya OBBleri sil" msgstr "Depodan meta verisi olmayan APKları ve/veya OBBleri sil"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -416,6 +465,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -430,6 +489,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -475,6 +544,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -484,6 +558,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Eksik olan iskelet meta veri dosyalarını yarat"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -517,6 +596,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -556,6 +640,10 @@ msgstr "Depo HTTP sunucusu ile etkileşim kur"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "Güncelleme gerektiren şeyler hakkında etkileşimli olarak sor." msgstr "Güncelleme gerektiren şeyler hakkında etkileşimli olarak sor."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -580,7 +668,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -679,6 +767,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -702,6 +795,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Yalnızca Play Store ile olan farkları yazdır" msgstr "Yalnızca Play Store ile olan farkları yazdır"
@ -824,6 +930,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -928,6 +1039,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -955,6 +1076,11 @@ msgstr "Etkileşimli kipte kullanılacak editörü belirtin. Öntanımlı %s"
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "Etkileşimli kipte kullanılacak editörü belirtin. Öntanımlı %s" msgstr "Etkileşimli kipte kullanılacak editörü belirtin. Öntanımlı %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "Etkileşimli kipte kullanılacak editörü belirtin. Öntanımlı %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "Oluşturma sunucusunda çalıştığımızı belirtin" msgstr "Oluşturma sunucusunda çalıştığımızı belirtin"
@ -981,6 +1107,11 @@ msgstr ""
"Sınama kipi - çıkışı sadece tmp dizinine koy, ve her zaman oluştur, çıkış " "Sınama kipi - çıkışı sadece tmp dizinine koy, ve her zaman oluştur, çıkış "
"zaten var olsa bile." "zaten var olsa bile."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "Günlüklenecek depo için taban URLsi (öntanımlı: https://f-droid.org)" msgstr "Günlüklenecek depo için taban URLsi (öntanımlı: https://f-droid.org)"
@ -1104,6 +1235,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Oluşturma sunucusu kullan" msgstr "Oluşturma sunucusu kullan"
@ -1226,6 +1361,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1250,6 +1390,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "kullanım: fdroid [-h|--help|--version] <komut>[<argümanlar>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1422,6 +1567,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1447,7 +1597,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1467,11 +1617,31 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:52+0200\n"
"PO-Revision-Date: 2017-10-01 11:53+0000\n" "PO-Revision-Date: 2017-10-01 11:53+0000\n"
"Last-Translator: Володимир Бриняк <bardvv@gmail.com>\n" "Last-Translator: Володимир Бриняк <bardvv@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/f-droid/" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/f-droid/"
@ -25,6 +25,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -62,19 +72,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -137,6 +147,11 @@ msgstr "Додайте новий застосунку зі свого вихі
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "Додайте підписи gpg для пакетів у репозиторії" msgstr "Додайте підписи gpg для пакетів у репозиторії"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "Псевдонім підписного ключа репозиторія в сховищі ключів" msgstr "Псевдонім підписного ключа репозиторія в сховищі ключів"
@ -175,6 +190,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +203,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -239,6 +263,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "Перевірте наявність оновлень для застосунків" msgstr "Перевірте наявність оновлень для застосунків"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "Очистити після завершення сканування" msgstr "Очистити після завершення сканування"
@ -277,6 +308,15 @@ msgstr "Прийняти зміни"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -289,6 +329,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "Створіть ключ підписування репозиторію у сховищі ключів" msgstr "Створіть ключ підписування репозиторію у сховищі ключів"
@ -332,6 +376,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Видаліть APKs і/або OBBs без метаданих з репозиторію" msgstr "Видаліть APKs і/або OBBs без метаданих з репозиторію"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -417,6 +466,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -431,6 +490,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -476,6 +545,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -485,6 +559,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Створення скелетів файлів метаданих, які відсутні"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -518,6 +597,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -557,6 +641,10 @@ msgstr "Взаємодія з HTTP-сервером репозиторію"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "Інтерактивно запитайте про речі, які потребують оновлення." msgstr "Інтерактивно запитайте про речі, які потребують оновлення."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -581,7 +669,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -680,6 +768,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -703,6 +796,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "Друкувати відмінності тільки з Play Store" msgstr "Друкувати відмінності тільки з Play Store"
@ -825,6 +931,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
msgid "" msgid ""
"Recalculate aggregate stats - use when changes have been made that would " "Recalculate aggregate stats - use when changes have been made that would "
@ -932,6 +1043,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -963,6 +1084,13 @@ msgstr ""
"Вкажіть редактор для використання в інтерактивному режимі. За замовчуванням " "Вкажіть редактор для використання в інтерактивному режимі. За замовчуванням "
"%s" "%s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
"Вкажіть редактор для використання в інтерактивному режимі. За замовчуванням "
"%s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "Вкажіть, що ми працюємо на сервері створення" msgstr "Вкажіть, що ми працюємо на сервері створення"
@ -989,6 +1117,11 @@ msgstr ""
"Режим тесту - надсилайте випуск тільки в каталог tmp, і завжди створюйте, " "Режим тесту - надсилайте випуск тільки в каталог tmp, і завжди створюйте, "
"навіть якщо випуск вже існує." "навіть якщо випуск вже існує."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "" msgstr ""
@ -1114,6 +1247,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "Використовуйте сервер створення" msgstr "Використовуйте сервер створення"
@ -1239,6 +1376,11 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1264,6 +1406,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "використання: fdroid [-h|--help|--version] <команда> [<аргументи>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1436,6 +1583,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1461,7 +1613,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1482,11 +1634,31 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-07-24 02:40+0000\n" "PO-Revision-Date: 2017-07-24 02:40+0000\n"
"Last-Translator: sima <lin2s@riseup.net>\n" "Last-Translator: sima <lin2s@riseup.net>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/f-" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -134,6 +144,11 @@ msgstr "从源码添加新的应用程序"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "添加包 gpg 签名至资源库" msgstr "添加包 gpg 签名至资源库"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "密钥存储中资源库签名密钥的别名" msgstr "密钥存储中资源库签名密钥的别名"
@ -172,6 +187,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -181,6 +200,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +258,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "检查应用更新" msgstr "检查应用更新"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "扫描全部完成后清除" msgstr "扫描全部完成后清除"
@ -272,6 +303,15 @@ msgstr "提交更改"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -284,6 +324,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "在密钥存储中创建资源库签名密钥" msgstr "在密钥存储中创建资源库签名密钥"
@ -327,6 +371,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "从资源库中删除没有元数据的 APK 和 OBB" msgstr "从资源库中删除没有元数据的 APK 和 OBB"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -410,6 +459,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -424,6 +483,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -467,6 +536,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -476,6 +550,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "创建缺少的主干元数据文件"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -509,6 +588,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -548,6 +632,10 @@ msgstr "与资源库 HTTP 服务器互动"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "需更新事项的互动提示。" msgstr "需更新事项的互动提示。"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -572,7 +660,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -671,6 +759,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -694,6 +787,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "仅输出与 Play Store 的差异" msgstr "仅输出与 Play Store 的差异"
@ -816,6 +922,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -914,6 +1025,16 @@ msgstr "跳过二进制源码扫描和其他问题"
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -941,6 +1062,11 @@ msgstr "指定编辑器使用互动模式。默认 %s"
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "指定编辑器使用互动模式。默认 %s" msgstr "指定编辑器使用互动模式。默认 %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "指定编辑器使用互动模式。默认 %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "指定在编译服务器上运行" msgstr "指定在编译服务器上运行"
@ -965,6 +1091,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "测试模式:仅将输出保存至 tmp 目录,即使输出已存在,仍然编译。" msgstr "测试模式:仅将输出保存至 tmp 目录,即使输出已存在,仍然编译。"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "资源库基 URL的日志默认为 https://f-droid.org" msgstr "资源库基 URL的日志默认为 https://f-droid.org"
@ -1088,6 +1219,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "使用编译服务器" msgstr "使用编译服务器"
@ -1207,6 +1342,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s" msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1230,6 +1370,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "用法fdroid [-h|--help|--version] <command> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1402,6 +1547,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1427,7 +1577,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1446,11 +1596,31 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases" msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n" "Report-Msgid-Bugs-To: https://gitlab.com/fdroid/fdroidserver/issues\n"
"POT-Creation-Date: 2017-10-17 17:48+0200\n" "POT-Creation-Date: 2017-10-19 20:50+0200\n"
"PO-Revision-Date: 2017-08-31 02:59+0000\n" "PO-Revision-Date: 2017-08-31 02:59+0000\n"
"Last-Translator: ezjerry liao <ezjerry@gmail.com>\n" "Last-Translator: ezjerry liao <ezjerry@gmail.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/f-" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!" msgid "\"%s/\" has no matching metadata file!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains outdated {name} ({version})"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "\"{path}\" contains recent {name} ({version})"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
#, python-format #, python-format
msgid "%(option)s option requires %(number)d argument" msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value" msgid "%s option does not take a value"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!" msgid "'keypass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!" msgid "'keystore' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!" msgid "'keystorepass' not found in config.py!"
msgstr "" msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!" msgid "'repo_keyalias' not found in config.py!"
msgstr "" msgstr ""
@ -134,6 +144,11 @@ msgstr "從原始程式碼增加一個新的應用程式"
msgid "Add gpg signatures for packages in repo" msgid "Add gpg signatures for packages in repo"
msgstr "在軟體倉庫中加入套件包的 gpg 簽署" msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py #: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore" msgid "Alias of the repo signing key in the keystore"
msgstr "在金鑰庫裡軟體倉庫簽署金鑰的別名" msgstr "在金鑰庫裡軟體倉庫簽署金鑰的別名"
@ -172,6 +187,10 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!" msgid "Android SDK path '{path}' is not a directory!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "App is in '{repo}' but has a link to {url}" msgid "App is in '{repo}' but has a link to {url}"
@ -181,6 +200,11 @@ msgstr ""
msgid "Appending .git is not necessary" msgid "Appending .git is not necessary"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'" msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +258,13 @@ msgstr ""
msgid "Check for updates to applications" msgid "Check for updates to applications"
msgstr "檢查應用程式更新" msgstr "檢查應用程式更新"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py #: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished" msgid "Clean after all scans have finished"
msgstr "所有掃描完成後清除" msgstr "所有掃描完成後清除"
@ -272,6 +303,15 @@ msgstr "提交變更"
msgid "Could not find '{command}' on your system" msgid "Could not find '{command}' on your system"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Could not find {path} to remove it"
msgstr ""
#: ../fdroidserver/update.py
msgid "Could not open apk file for analysis"
msgstr ""
#: ../fdroidserver/import.py #: ../fdroidserver/import.py
msgid "Couldn't find latest version code" msgid "Couldn't find latest version code"
msgstr "" msgstr ""
@ -284,6 +324,10 @@ msgstr ""
msgid "Couldn't find package ID" msgid "Couldn't find package ID"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py #: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore" msgid "Create a repo signing key in a keystore"
msgstr "在金鑰庫中建立一個軟體倉庫的簽署金鑰" msgstr "在金鑰庫中建立一個軟體倉庫的簽署金鑰"
@ -327,6 +371,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo" msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "從軟體倉庫刪除缺少中介資料的 APK 和/或 OBB" msgstr "從軟體倉庫刪除缺少中介資料的 APK 和/或 OBB"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-format #, python-format
msgid "Description '%s' is just the app's summary" msgid "Description '%s' is just the app's summary"
@ -410,6 +459,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}" msgid "Failed fetching signatures for '{apkfilename}': {error}"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed reading {path}: {error}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed resizing {path}: {error}"
msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py
#, fuzzy #, fuzzy
msgid "Failed to align application" msgid "Failed to align application"
@ -424,6 +483,16 @@ msgstr ""
msgid "Failed to get APK manifest information" msgid "Failed to get APK manifest information"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, deleting {path}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Failed to get apk information, skipping {path}"
msgstr ""
#: ../fdroidserver/install.py #: ../fdroidserver/install.py
#, python-brace-format #, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}" msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -467,6 +536,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository." msgid "Found multiple signing certificates for repository."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py #: ../fdroidserver/index.py
msgid "Found no signing certificates for repository." msgid "Found no signing certificates for repository."
msgstr "" msgstr ""
@ -476,6 +550,11 @@ msgstr ""
msgid "Found non-file at %s" msgid "Found non-file at %s"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "建立缺少的骨幹中介資料檔案"
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "Git checkout of '%s' failed" msgid "Git checkout of '%s' failed"
@ -509,6 +588,11 @@ msgstr ""
msgid "Ignoring package without metadata: " msgid "Ignoring package without metadata: "
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py #: ../fdroidserver/rewritemeta.py
#, python-brace-format #, python-brace-format
msgid "Ignoring {ext} file at '{path}'" msgid "Ignoring {ext} file at '{path}'"
@ -548,6 +632,10 @@ msgstr "與軟體倉庫 HTTP 伺服器互動"
msgid "Interactively ask about things that need updating." msgid "Interactively ask about things that need updating."
msgstr "以對話方式詢問需要更新的內容。" msgstr "以對話方式詢問需要更新的內容。"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
msgid "Invalid bulleted list" msgid "Invalid bulleted list"
msgstr "" msgstr ""
@ -572,7 +660,7 @@ msgstr ""
msgid "Invalid package name {0}" msgid "Invalid package name {0}"
msgstr "" msgstr ""
#: ../fdroidserver/publish.py #: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!" msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr "" msgstr ""
@ -671,6 +759,11 @@ msgstr ""
msgid "No signed output directory - nothing to do" msgid "No signed output directory - nothing to do"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py #: ../fdroidserver/common.py
#, python-format #, python-format
msgid "No such package: %s" msgid "No such package: %s"
@ -694,6 +787,19 @@ msgstr ""
msgid "Nothing to do for {appid}." msgid "Nothing to do for {appid}."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "OBB file has newer versionCode({integer}) than any APK:"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB filename must start with \"main.\" or \"patch.\":"
msgstr ""
#: ../fdroidserver/update.py
msgid "OBB's packagename does not match a supported APK:"
msgstr ""
#: ../fdroidserver/checkupdates.py #: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store" msgid "Only print differences with the Play Store"
msgstr "僅印出與 Play Store 的不同處" msgstr "僅印出與 Play Store 的不同處"
@ -816,6 +922,11 @@ msgid ""
"'{apkfilename}'" "'{apkfilename}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py #: ../fdroidserver/stats.py
#, fuzzy #, fuzzy
msgid "" msgid ""
@ -914,6 +1025,16 @@ msgstr "跳過掃描二進制碼和其它問題的原始碼"
msgid "Skipping '{apkfilename}' with invalid signature!" msgid "Skipping '{apkfilename}' with invalid signature!"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping index generation for {appid}"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Skipping {apkfilename} with invalid signature!"
msgstr ""
#: ../fdroidserver/scanner.py #: ../fdroidserver/scanner.py
#, python-brace-format #, python-brace-format
msgid "Skipping {appid}: disabled" msgid "Skipping {appid}: disabled"
@ -941,6 +1062,11 @@ msgstr "指定編輯器在互動模式使用。預設 %s"
msgid "Specify editor to use in interactive mode. Default %s" msgid "Specify editor to use in interactive mode. Default %s"
msgstr "指定編輯器在互動模式使用。預設 %s" msgstr "指定編輯器在互動模式使用。預設 %s"
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr "指定編輯器在互動模式使用。預設 %s"
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Specify that we're running on the build server" msgid "Specify that we're running on the build server"
msgstr "指定在構建伺服務器上運作" msgstr "指定在構建伺服務器上運作"
@ -965,6 +1091,11 @@ msgid ""
"the output already exists." "the output already exists."
msgstr "測試模式 - 將輸出只放在 tmp 目錄中,即使輸出已經存在,仍然構建。" msgstr "測試模式 - 將輸出只放在 tmp 目錄中,即使輸出已經存在,仍然構建。"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py #: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)" msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "軟體倉庫日誌的總部網址預設https://f-droid.org" msgstr "軟體倉庫日誌的總部網址預設https://f-droid.org"
@ -1088,6 +1219,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch" msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "Use build server" msgid "Use build server"
msgstr "使用構建伺服器" msgstr "使用構建伺服器"
@ -1207,6 +1342,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s" msgid_plural "conflicting option strings: %s"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "deleting: repo/{apkfilename}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "dest= is required for options like %r" msgid "dest= is required for options like %r"
@ -1230,6 +1370,11 @@ msgstr ""
msgid "expected one argument" msgid "expected one argument"
msgstr "" msgstr ""
#: ../fdroid
#, fuzzy
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr "用法fdroid [-h|--help|--version] <command> [<args>]"
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py #: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point" msgid "floating-point"
msgstr "" msgstr ""
@ -1402,6 +1547,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL." msgid "signed APK, either a file-path or HTTPS URL."
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "skipping source tarball: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format #, python-format
msgid "the following arguments are required: %s" msgid "the following arguments are required: %s"
@ -1427,7 +1577,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!" msgid "unsafe permissions on '{config_file}' (should be 0600)!"
msgstr "" msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py #: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py ../fdroid
msgid "usage: " msgid "usage: "
msgstr "" msgstr ""
@ -1446,11 +1596,31 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases" msgid_plural "{0} apps, {1} key aliases"
msgstr[0] "" msgstr[0] ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{apkfilename} ({appid}) has no metadata!"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{appid} does not have a name! Using package name instead."
msgstr ""
#: ../fdroidserver/lint.py #: ../fdroidserver/lint.py
#, python-brace-format #, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'" msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
msgstr "" msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{name} \"{path}\" does not exist! Correct it in config.py."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "{path} is zero size!"
msgstr ""
#: ../fdroidserver/build.py #: ../fdroidserver/build.py
msgid "{} build failed" msgid "{} build failed"
msgid_plural "{} builds failed" msgid_plural "{} builds failed"