1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-06 11:00:13 +02:00

Merge branch 'deploy-localization-support' into 'master'

Deploy localization support

See merge request fdroid/fdroidserver!356
This commit is contained in:
Hans-Christoph Steiner 2017-10-23 10:27:22 +00:00
commit 95c5b0840c
30 changed files with 3984 additions and 621 deletions

2
.gitignore vendored
View File

@ -13,7 +13,7 @@ env/
fdroidserver.egg-info/
pylint.parseable
/.testfiles/
docs/html/
README.rst
# files generated by tests
tmp/

View File

@ -7,7 +7,7 @@ matrix:
- os: linux
language: android
- os: osx
osx_image: xcode9
osx_image: xcode9.1
env: ANDROID_SDK_ROOT=/usr/local/share/android-sdk
env: ANDROID_HOME=/usr/local/share/android-sdk
- os: osx
@ -28,6 +28,7 @@ addons:
- dash
- pylint
- pep8
- python3-babel
- python3-dev
- python3-pip
- python3-ruamel.yaml
@ -46,13 +47,21 @@ android:
- 'android-sdk-license-.+'
# the PPA is needed on Ubuntu 14.04 precise, and with python3, trusty too
# the pip thing is a hack that can go away with trusty
# the pip thing is a hack that can go away with trusty.
#
# * ensure java8 is installed since Android SDK doesn't work with Java9
# * Java needs to be at least 1.8.0_131 to have MD5 properly disabled
# https://blogs.oracle.com/java-platform-group/oracle-jre-will-no-longer-trust-md5-signed-code-by-default
# https://opsech.io/posts/2017/Jun/09/openjdk-april-2017-security-update-131-8u131-and-md5-signed-jars.html
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update > /dev/null;
brew install dash bash python3 gradle jenv;
brew install gnu-sed --with-default-names;
brew cask reinstall java;
if ! ruby -e 'v = `javac -version 2>&1`.split()[1].gsub("_", "."); exit Gem::Dependency.new("", "~> 1.8.0.131").match?("", v)'; then
brew cask uninstall java --force;
brew cask install caskroom/versions/java8;
fi;
brew cask install android-sdk;
mkdir -p "$ANDROID_HOME/licenses";

View File

@ -26,8 +26,19 @@ include examples/public-read-only-s3-bucket-policy.json
include examples/template.yml
include fdroid
include LICENSE
include locale/bo/LC_MESSAGES/fdroidserver.mo
include locale/de/LC_MESSAGES/fdroidserver.mo
include locale/es_AR/LC_MESSAGES/fdroidserver.mo
include locale/es/LC_MESSAGES/fdroidserver.mo
include locale/fr/LC_MESSAGES/fdroidserver.mo
include locale/nb_NO/LC_MESSAGES/fdroidserver.mo
include locale/pt_BR/LC_MESSAGES/fdroidserver.mo
include locale/tr/LC_MESSAGES/fdroidserver.mo
include locale/uk/LC_MESSAGES/fdroidserver.mo
include locale/zh_Hans/LC_MESSAGES/fdroidserver.mo
include locale/zh_Hant/LC_MESSAGES/fdroidserver.mo
include makebuildserver
include README.md
include README.rst
include tests/androguard_test.py
include tests/bad-unicode-*.apk
include tests/build.TestCase

2
fdroid
View File

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

View File

@ -8,7 +8,8 @@ import sys
# support running straight from git and standard installs
rootpaths = [
os.path.realpath(os.path.join(os.path.dirname(__file__), '..')),
sys.prefix + 'share',
os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..', '..', 'share')),
os.path.join(sys.prefix, 'share'),
]
localedir = None

View File

@ -416,7 +416,7 @@ def ensure_build_tools_exists(thisconfig):
versioned_build_tools = os.path.join(build_tools, thisconfig['build_tools'])
if not os.path.isdir(versioned_build_tools):
raise FDroidException(
_("Android Build Tools path '{path}' does not exist!")
_("Android build-tools path '{path}' does not exist!")
.format(path=versioned_build_tools))

View File

@ -17,7 +17,10 @@ class FDroidException(Exception):
return ret
def __str__(self):
ret = self.value
if self.value is None:
ret = __name__
else:
ret = str(self.value)
if self.detail:
ret += "\n==== detail begin ====\n%s\n==== detail end ====" % ''.join(self.detail).strip()
return ret

View File

@ -69,10 +69,11 @@ def main():
tmp = os.path.dirname(sys.argv[0])
examplesdir = None
if os.path.basename(tmp) == 'bin':
egg_link = os.path.join(tmp, '..', 'local/lib/python2.7/site-packages/fdroidserver.egg-link')
if os.path.exists(egg_link):
egg_links = glob.glob(os.path.join(tmp, '..',
'local/lib/python3.*/site-packages/fdroidserver.egg-link'))
if egg_links:
# installed from local git repo
examplesdir = os.path.join(open(egg_link).readline().rstrip(), 'examples')
examplesdir = os.path.join(open(egg_links[0]).readline().rstrip(), 'examples')
else:
# try .egg layout
examplesdir = os.path.dirname(os.path.dirname(__file__)) + '/share/doc/fdroidserver/examples'

View File

@ -373,7 +373,7 @@ def resize_icon(iconpath, density):
im.save(iconpath, "PNG")
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:
if fp:
@ -407,10 +407,10 @@ def getsig(apkpath):
certs = [n for n in apk.namelist() if common.CERT_PATH_REGEX.match(n)]
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
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
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') \
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):
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:
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
break
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):
logging.warning(msg + f)
logging.warning(msg + ' ' + f)
if options.delete_unknown:
logging.error("Deleting unknown file: " + f)
logging.error(_("Deleting unknown file: {path}").format(path=f))
os.remove(f)
obbs = []
@ -561,24 +563,25 @@ def insert_obbs(repodir, apps, apks):
# obbfile looks like: [main|patch].<expansion-version>.<package-name>.obb
chunks = obbfile.split('.')
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
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
versionCode = int(chunks[1])
packagename = ".".join(chunks[2:-1])
highestVersionCode = java_Integer_MIN_VALUE
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
for apk in apks:
if packagename == apk['packageName'] and apk['versionCode'] > highestVersionCode:
highestVersionCode = apk['versionCode']
if versionCode > highestVersionCode:
obbWarnDelete(f, 'OBB file has newer versionCode(' + str(versionCode)
+ ') than any APK: ')
obbWarnDelete(f, _('OBB file has newer versionCode({integer}) than any APK:')
.format(integer=str(versionCode)))
continue
obbsha256 = sha256sum(f)
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)
name_utf8 = name.decode('utf-8')
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
if not common.is_repo_file(filename):
continue
stat = os.stat(filename)
if stat.st_size == 0:
raise FDroidException(filename + ' is zero size!')
raise FDroidException(_('{path} is zero size!')
.format(path=filename))
shasum = sha256sum(filename)
usecache = False
@ -903,10 +908,12 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
else:
repo_file['added'] = datetime(*a[:6])
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
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:
logging.debug(_("Processing {apkfilename}").format(apkfilename=name_utf8))
@ -1005,13 +1012,13 @@ def scan_apk_aapt(apk, apkfile):
if p.returncode != 0:
if options.delete_unknown:
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)
else:
logging.error("Could not find {0} to remove it".format(apkfile))
else:
logging.error("Failed to get apk information, skipping " + apkfile)
raise BuildException("Invalid APK")
logging.error(_("Failed to get apk information, skipping {path}").format(path=apkfile))
raise BuildException(_("Invalid APK"))
for line in p.output.splitlines():
if line.startswith("package:"):
try:
@ -1104,18 +1111,21 @@ def scan_apk_androguard(apk, apkfile):
else:
if options.delete_unknown:
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)
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:
logging.error("Failed to get apk information, skipping " + apkfile)
raise BuildException("Invaild APK")
logging.error(_("Failed to get apk information, skipping {path}")
.format(path=apkfile))
raise BuildException(_("Invalid APK"))
except ImportError:
raise FDroidException("androguard library is not installed and aapt not present")
except FileNotFoundError:
logging.error("Could not open apk file for analysis")
raise BuildException("Invalid APK")
logging.error(_("Could not open apk file for analysis"))
raise BuildException(_("Invalid APK"))
apk['packageName'] = apkobject.get_package()
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:
apk = apkcache[apkfilename]
if apk.get('hash') == sha256sum(apkfile):
logging.debug("Reading " + apkfilename + " from cache")
logging.debug(_("Reading {apkfilename} from cache")
.format(apkfilename=apkfilename))
usecache = True
else:
logging.debug("Ignoring stale cache data for " + apkfilename)
logging.debug(_("Ignoring stale cache data for {apkfilename}")
.format(apkfilename=apkfilename))
if not usecache:
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 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)
else:
logging.warning('Skipping "' + apkfilename + '" with invalid signature!')
logging.warning(_('Skipping {apkfilename} with invalid signature!')
.format(apkfilename=apkfilename))
return True, None, False
apkzip = zipfile.ZipFile(apkfile, 'r')
@ -1290,7 +1304,7 @@ def process_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk=Fal
# store timezone info
manifest = apkzip.getinfo('AndroidManifest.xml')
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:
dt_obj = datetime(*manifest.date_time)
checkdt = dt_obj - timedelta(1)
@ -1425,7 +1439,8 @@ def extract_apk_icons(icon_filename, apk, apkzip, repo_dir):
empty_densities.remove(density)
break
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']:
apk['icon'] = icon_filename
@ -1564,8 +1579,8 @@ def archive_old_apks(apps, apks, archapks, repodir, archivedir, defaultkeepversi
else:
keepversions = defaultkeepversions
logging.debug("Checking archiving for {0} - apks:{1}, keepversions:{2}, archapks:{3}"
.format(appid, len(apks), keepversions, len(archapks)))
logging.debug(_("Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, archapks:{arch}")
.format(appid=appid, integer=len(apks), keep=keepversions, arch=len(archapks)))
current_app_apks = filter_apk_list_sorted(apks)
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
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'])
apkpath = os.path.join(repodir, apk['apkName'])
@ -1659,7 +1674,8 @@ def create_metadata_from_template(apk):
metatxt,
flags=re.IGNORECASE | re.MULTILINE)
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):).*$',
r'\1 ' + apk['packageName'],
metatxt,
@ -1679,11 +1695,12 @@ def create_metadata_from_template(apk):
if 'name' in apk and apk['name'] != '':
app['Name'] = apk['name']
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']
with open(os.path.join('metadata', apk['packageName'] + '.yml'), 'w') as f:
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
@ -1710,8 +1727,8 @@ def main():
parser.add_argument("-I", "--icons", action="store_true", default=False,
help=_("Resize all the icons exceeding the max pixel size and exit"))
parser.add_argument("-e", "--editor", default="/etc/alternatives/editor",
help=_("Specify editor to use in interactive mode. Default ") +
"is /etc/alternatives/editor")
help=_("Specify editor to use in interactive mode. Default " +
"is {path}").format(path='/etc/alternatives/editor'))
parser.add_argument("-w", "--wiki", default=False, action="store_true",
help=_("Update the wiki"))
parser.add_argument("--pretty", action="store_true", default=False,
@ -1733,7 +1750,7 @@ def main():
config = common.read_config(options)
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']
if config['archive_older'] != 0:
@ -1752,13 +1769,14 @@ def main():
for k in ['repo_icon', 'archive_icon']:
if k in config:
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)
# if the user asks to create a keystore, do it now, reusing whatever it can
if options.create_key:
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'] + "'")
sys.exit(1)
@ -1811,16 +1829,18 @@ def main():
create_metadata_from_template(apk)
apps = metadata.read_metadata()
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:
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'])
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:
os.remove(rmf)
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)
insert_obbs(repodirs[0], apps, apks)
@ -1854,7 +1874,7 @@ def main():
if os.path.isdir(repodir):
index.make(appdict, [appid], apks, repodir, False)
else:
logging.info('Skipping index generation for ' + appid)
logging.info(_('Skipping index generation for {appid}').format(appid=appid))
return
if len(repodirs) > 1:

View File

@ -13,16 +13,16 @@ TEMPLATE = fdroidserver.pot
VERSION = $(shell git describe)
# generate .mo files from the .po files
all-local: $(MOFILES)
clean-local:
-rm -f -- $(MOFILES)
-rm -f -- $(POFILES:=~)
# refresh everything from the source code
update: $(POFILES)
# generate .mo files from the .po files
compile: $(MOFILES)
clean:
-rm -f -- $(MOFILES)
-rm -f -- $(POFILES:=~)
$(TEMPLATE): $(FILES)
xgettext --join-existing --from-code=UTF-8 \
--language=Python --keyword=_ \
@ -40,4 +40,4 @@ $(TEMPLATE): $(FILES)
msgfmt --check -o $@ $(@:mo=po)
.PHONY = all-local clean-local template
.PHONY = compile clean update

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-07-17 18:35+0000\n"
"Last-Translator: Lobsang <lobsangsither@gmail.com>\n"
"Language-Team: Tibetan <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -83,6 +93,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -118,10 +131,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -131,8 +140,10 @@ msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒ
msgid "Add a new application from its source code"
msgstr "འབྱུང་ཁུངས་ཨང་རྟགས་ནས་མཉེན་ཆས་གསར་པ་ཁ་སྣོན་བྱེད།"
msgid "Add gpg signatures for packages in repo"
msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore"
@ -150,11 +161,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "མ་ཟད་བཀོད་སྒྲིག་བྱས་པའི་གནད་དོན་རྣམས་ལ་ཉེན་བརྡ་སྟོན། དཔེར་ན་rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -174,6 +180,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -183,6 +201,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -236,6 +260,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr "མཉེན་ཆས་རྣམས་གསར་བསྒྱུར་བྱས་མིན་གཟིགས་ཞིབ་གནང་དང་།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr "ཆ་ཚང་འཚག་རྒྱབ་ཚར་བའི་རྗེས་སུ་གཙང་མ་བཟོས།"
@ -253,9 +284,6 @@ msgstr "སྣོད་ཆ་ཚང་གཙང་མ་བཟོས་ནས་
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "གསར་བསྒྱུར་གཙང་བཟོ།-ཡིག་ཆ་གསོག་ཉར་བེད་སྤྱོ་མ་བྱེད། apks ཚང་མ་སྐྱར་སྤྱོད་བྱེད།"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "གསར་བསྒྱུར་གཙང་བཟོ།-ཡིག་ཆ་གསོག་ཉར་བེད་སྤྱོ་མ་བྱེད། apks ཚང་མ་སྐྱར་སྤྱོད་བྱེད།"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "སྡེ་ཚན་སོ་སོའི་ཐོ་གཞུང་ལ་བར་མཚམས་རེ་འཇོག།"
@ -274,10 +302,21 @@ msgstr "བསྒྱུར་བ་གཏོང་བར་མོས་མཐུ
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -286,6 +325,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "ལྡེ་མིག་གསོག་ཉར་ཁག་གི་ནང་ལ་རེ་པོ་མིང་རྟགས་བཀོད་པའི་ལྡེ་མིག་གཅིག་བཟོས།"
@ -329,6 +372,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "APKs དང/ཡང་ནOBBs གཉིས་ལ་རེ་པོ་ནས་འགྲེལ་ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལོ་རྒྱུས་མེད་པ་རྣམས་སུབས།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -412,6 +460,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -426,6 +484,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -459,10 +527,16 @@ msgstr ""
"ནུས་མེད་མཉེན་ཆས་ལ་ཐོན་སྐྱེད་ཆེད་དུ་མངགས་ཏེ་བཟོས། འདི་འཚག་རྒྱབ་ཀྱི་དཀའ་ངལ་ཡོད་མིན་ལ་མ་ལྟོས་པར་མུ་"
"མཐུད་དུ་འགྲོ་ཐུབ། འདི་ཚོད་ལྟའི་ཚུལ་ཁ་ོནར་ཆོག་མཆན་སྤྲད།"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -471,6 +545,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -480,6 +559,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "བོར་བརླག་ཏུ་སོང་བའི་ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལོ་རྒྱུས་ཡང་སྐྱར་བཟོས།"
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -513,6 +597,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -552,6 +641,10 @@ msgstr "རེ་པོ་HTTP ཞབས་ཞུ་འཕྲུལ་ཆས་
msgid "Interactively ask about things that need updating."
msgstr "གསར་བསྒྱུར་བྱེད་དགོས་པའི་རིགས་ལ་སྦས་གསང་མེད་པའི་ཐོག་ནས་གསུངས་རོགས།"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -576,7 +669,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -675,11 +768,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -698,6 +797,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "མཉེས་ཆས་གསོག་ཉར་ཁང་དང་མི་འདྲ་པ་ཡོད་པ་ཁོ་ནར་པར་ཤུས་བྱེད།"
@ -815,6 +933,8 @@ msgstr "ཡིག་ཚགས་ཀྱི་རྒྱབ་ལྗོངས་ལ
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -822,6 +942,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -926,6 +1051,16 @@ msgstr "འབྱུང་ཁུངས་ཨ་རྟགས་དང་དཀའ
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -953,6 +1088,11 @@ msgstr "སྒྲིག་བཀོད་པར་དམིགས་སྟོན
msgid "Specify editor to use in interactive mode. Default %s"
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
msgid "Specify that we're running on the build server"
msgstr "ང་ཚོས་ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་འདིའི་སྒང་ལ་འཁོར་སྐྱོད་བྱེད་བཞིན་གསལ་སྟོན་བྱེད།"
@ -979,6 +1119,12 @@ msgstr ""
"ཚོད་ལྟའི་ཚུལ་-གལ་སྲིད་ཡིག་ཚགས་འདི་སྔོན་ཚོད་ནས་ཡོད་ནའང་། ཡིག་ཚགས་འདི་སྐབས་ཕྲལ་གྱི་ཕྱོགས་དེབ་ཁོ་ནའི་"
"ནང་ལ་བླུགས་པ་དང་རྟག་ཏུ་ཐོན་སྐྱེད་བཟོས།"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "གཞི་རྩའི་URL དེ་རེ་པོ་ཡི་ཐོ་གཞུང་བཀོད་པའི་ཆེད་དུ་(སོར་བཞག: https://f-droid.org)"
@ -1033,6 +1179,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "ཆ་རྒྱུས་མེད་པའི་དམིགས་བསལ་ཞིག་རྙེད་སོང་།"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1054,6 +1201,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1102,6 +1254,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "ཐོན་སྐྱེད་ཞབས་ཞུ་འཕྲུལ་ཆས་བེད་སྤྱོད་བྱེད།"
@ -1152,6 +1308,11 @@ msgstr "X.509 'ཁྱད་པར་ཅན་གྱི་མིང་' ལྡེ
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1162,18 +1323,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "APPID བཀོད་པའི་ནང་གི་མཉེས་ཆས་ཁ་བྱང་།"
msgid "app-id to check for updates"
msgstr "མཉེས་ཆས་ཁ་བྱང་རྒྱུད་གསར་བསྒྱར་ཡོད་མིན་ལྟོས།"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "མཉེན་ཆས་ཀྱི་ངོ་བོ་དང་མཉམ་དུ་གདམ་ཀ་ཅན་གྱི་ཐོན་རིམ་ཨང་རྟགས་APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "མཉེས་ཆས་ཁ་བྱང་དང་མཉམ་དུ་གདམ་ཀ་ཅན་གྱི་ཐོན་རིམ་ཨང་རྟགས།APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1184,6 +1333,7 @@ msgstr "APPID བཀོད་པའི་ནང་གི་མཉེས་ཆས
msgid "applicationId to check for updates"
msgstr "མཉེས་ཆས་ཁ་བྱང་རྒྱུད་གསར་བསྒྱར་ཡོད་མིན་ལྟོས།"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1224,6 +1374,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s"
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
#, python-format
msgid "dest= is required for options like %r"
@ -1247,6 +1402,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1419,6 +1579,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1444,7 +1609,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1463,11 +1628,32 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1477,3 +1663,25 @@ msgstr[0] ""
msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "gpg གྱི་མིང་རྟགས་དེ་ཐུམ་སྒྲིལ་ནང་ཁ་སྣོན་བྱས་ནས་རེ་པོ་ནང་ལ་བཅུག"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr "གསར་བསྒྱུར་གཙང་བཟོ།-ཡིག་ཆ་གསོག་ཉར་བེད་སྤྱོ་མ་བྱེད། apks ཚང་མ་སྐྱར་སྤྱོད་བྱེད།"
#~ msgid "app-id in the form APPID"
#~ msgstr "APPID བཀོད་པའི་ནང་གི་མཉེས་ཆས་ཁ་བྱང་།"
#~ msgid "app-id to check for updates"
#~ msgstr "མཉེས་ཆས་ཁ་བྱང་རྒྱུད་གསར་བསྒྱར་ཡོད་མིན་ལྟོས།"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "མཉེན་ཆས་ཀྱི་ངོ་བོ་དང་མཉམ་དུ་གདམ་ཀ་ཅན་གྱི་ཐོན་རིམ་ཨང་རྟགས་APPID[:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "མཉེས་ཆས་ཁ་བྱང་དང་མཉམ་དུ་གདམ་ཀ་ཅན་གྱི་ཐོན་རིམ་ཨང་རྟགས།APPID[:VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-07-16 20:06+0000\n"
"Last-Translator: Claus Rüdinger <Mail-an-CR@web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen"
msgid "Add a new application from its source code"
msgstr "Eine neue Anwendung aus ihrem Quellcode hinzufügen"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "Auch vor Formatierungsfehler warnen, wie etwa \"rewritemeta -l\""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Nach Abschluss aller Scans bereinigen"
@ -257,11 +288,6 @@ msgstr ""
"Sauber - ohne Verwendung der Zwischenspeicher - aktualisieren, alle APKs "
"wiederaufbereiten"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
"Sauber - ohne Verwendung der Zwischenspeicher - aktualisieren, alle APKs "
"wiederaufbereiten"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Liste der Kategorien durch Kommata getrennt."
@ -280,10 +306,21 @@ msgstr "Änderungen übergeben"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -292,6 +329,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "Repository-Signierschlüssel in einem Schlüsselspeicher erstellen"
@ -335,6 +376,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
msgid "Description '%s' is just the app's summary"
@ -420,6 +466,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -434,6 +490,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -467,10 +533,16 @@ msgstr ""
"Erstellung deaktivierter Apps erzwingen und ungeachtet von Scan-Problemen "
"ausüben. Nur im Testmodus erlaubt."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -479,6 +551,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -488,6 +565,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -521,6 +603,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -560,6 +647,10 @@ msgstr "Mit dem HTTP-Server des Repository kommunizieren"
msgid "Interactively ask about things that need updating."
msgstr "Angelegenheiten, die Aktualisierungen erfordern, interaktiv abfragen."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -584,7 +675,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -683,11 +774,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -706,6 +803,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Nur Unterschiede zum Play Store ausgeben"
@ -827,6 +943,8 @@ msgstr "Alle Metadaten-Dateien betrachten und beenden"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -834,6 +952,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -945,6 +1068,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -979,6 +1112,13 @@ msgstr ""
"Editor festlegen, der im interaktiven Modus verwendet werden soll. Standard "
"%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
msgid "Specify that we're running on the build server"
msgstr "Festlegen, dass F-Droid auf dem Build-Server läuft"
@ -1005,6 +1145,12 @@ msgstr ""
"Testmodus - Ausgabe nur ins tmp-Verzeichnis einfügen, immer erstellen, "
"selbst wenn die Ausgabe bereits vorhanden ist."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1060,6 +1206,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Unbekannter Fehler aufgetreten!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1081,6 +1228,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1129,6 +1281,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Build-Server verwenden"
@ -1178,6 +1334,11 @@ msgstr "X.509 'Angesehener Name' wenn Schlüssel generiert werden"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1188,18 +1349,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "App-ID in der Form APPID"
msgid "app-id to check for updates"
msgstr "App-ID, um auf Aktualisierungen zu prüfen"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "App-ID mit optionalem Versionscode in der Form APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "App-ID mit optionalem Versionscode in der Form APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1210,6 +1359,7 @@ msgstr "App-ID in der Form APPID"
msgid "applicationId to check for updates"
msgstr "App-ID, um auf Aktualisierungen zu prüfen"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1251,6 +1401,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1275,6 +1430,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1447,6 +1607,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1472,7 +1637,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1492,11 +1657,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1508,3 +1694,27 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "GPG-Signaturen für Programmpakete in der Paketquelle hinzufügen"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Sauber - ohne Verwendung der Zwischenspeicher - aktualisieren, alle APKs "
#~ "wiederaufbereiten"
#~ msgid "app-id in the form APPID"
#~ msgstr "App-ID in der Form APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "App-ID, um auf Aktualisierungen zu prüfen"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "App-ID mit optionalem Versionscode in der Form APPID[:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "App-ID mit optionalem Versionscode in der Form APPID[:VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-07-03 15:20+0000\n"
"Last-Translator: José Rodrigo Baires Quezada <rbaires@irex.org>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Añadir las firmas gpg para los paquetes en el repositorio"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "Añadir las firmas gpg para los paquetes en el repositorio"
msgid "Add a new application from its source code"
msgstr "Añadir una nueva aplicación desde su código fuente"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "También advierta sobre problemas de formato, como r rewritemeta-l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Limpiar después de que todos los análisis hayan finalizado"
@ -256,10 +287,6 @@ msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
"Actualización limpia, no usa caché, reprocesa todas las aplicaciones APK"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
"Actualización limpia, no usa caché, reprocesa todas las aplicaciones APK"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Lista de categorías separadas por comas."
@ -278,10 +305,21 @@ msgstr "Aplicar cambios"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -290,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "Cree una clave de firmado de repositorios en un llavero de claves"
@ -333,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
msgid "Description '%s' is just the app's summary"
@ -419,6 +466,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -433,6 +490,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -466,10 +533,16 @@ msgstr ""
"Forzar la creación de compilaciones deshabilitadas, independientemente de "
"los problemas de escaneo. Sólo se permite en modo de prueba."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -478,6 +551,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -487,6 +565,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -520,6 +603,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -560,6 +648,10 @@ msgid "Interactively ask about things that need updating."
msgstr ""
"Pregunte de forma interactiva sobre temas que necesitan una actualización."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -584,7 +676,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -683,11 +775,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -706,6 +804,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Solo imprimir diferencias con el Play Store"
@ -823,6 +940,8 @@ msgstr "Leer todos los archivos de metadatos y salir"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -830,6 +949,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -940,6 +1064,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -969,6 +1103,12 @@ msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
"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
msgid "Specify that we're running on the build server"
msgstr "Especificar que estamos ejecutando en el servidor de compilación"
@ -995,6 +1135,12 @@ msgstr ""
"Modo de prueba: ponga la salida solo en el directorio tmp y siga "
"desarrollando, incluso si la salida ya existe."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1050,6 +1196,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "¡Se encontró una excepción desconocida!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1071,6 +1218,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1119,6 +1271,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Use un servidor de compilación"
@ -1172,6 +1328,11 @@ msgstr "X.509 'Nombre Distintivo' (DN) usado al generar claves"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1182,18 +1343,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "APP-ID en el formato APPID"
msgid "app-id to check for updates"
msgstr "APP-ID para buscar actualizaciones"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "APP-ID con código de versión opcional en la forma APPID [: VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "APP-ID con código de versión opcional en la forma APPID [: VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1204,6 +1353,7 @@ msgstr "APP-ID en el formato APPID"
msgid "applicationId to check for updates"
msgstr "APP-ID para buscar actualizaciones"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1245,6 +1395,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1269,6 +1424,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1441,6 +1601,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1466,7 +1631,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1486,11 +1651,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1502,3 +1688,26 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Añadir las firmas gpg para los paquetes en el repositorio"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Añadir las firmas gpg para los paquetes en el repositorio"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Actualización limpia, no usa caché, reprocesa todas las aplicaciones APK"
#~ msgid "app-id in the form APPID"
#~ msgstr "APP-ID en el formato APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "APP-ID para buscar actualizaciones"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "APP-ID con código de versión opcional en la forma APPID [: VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "APP-ID con código de versión opcional en la forma APPID [: VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-10-01 01:48+0000\n"
"Last-Translator: who cares? <facevedo@disroot.org>\n"
"Language-Team: Spanish (Argentina) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Agregar firmas GPG a paquetes en el repositorio"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "Agregar firmas GPG a paquetes en el repositorio"
msgid "Add a new application from its source code"
msgstr "Agregar una aplicación nueva desde su código fuente"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "También advertir sobre problemas de formateo, como ser rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Limpiar luego de que todos los escaneos hayan terminado"
@ -255,9 +286,6 @@ msgstr "Limpiar todos los contenedores y salir"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "Limpiar actualización - no utiliza cachés, reprocesa todos los APK's"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "Limpiar actualización - no utiliza cachés, reprocesa todos los APK's"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Lista de categorías separadas por coma."
@ -276,10 +304,21 @@ msgstr "Cometer cambios"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -288,6 +327,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy
msgid "Create a repo signing key in a keystore"
@ -332,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
msgid "Description '%s' is just the app's summary"
@ -420,6 +468,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -434,6 +492,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -468,10 +536,16 @@ msgstr ""
"independientemente de los problemas en el escaneo. Solo disponible en modo "
"de pruebas."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -480,6 +554,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -489,6 +568,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -522,6 +606,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -562,6 +651,10 @@ msgid "Interactively ask about things that need updating."
msgstr ""
"Preguntar de forma interactiva sobre las cosas necesarias a actualizar."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -586,7 +679,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -685,11 +778,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -708,6 +807,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Solo mostrar las diferencias con el Plays Store"
@ -825,6 +943,8 @@ msgstr "Leer todos los archivos de metadatos y salir"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -832,6 +952,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -936,6 +1061,16 @@ msgstr "Saltear el escaneo de binarios y otros problemas en el código fuente"
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -965,6 +1100,11 @@ msgstr "Especificar el editor a usar en modo interactivo. Por defecto %s"
msgid "Specify editor to use in interactive mode. Default %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
msgid "Specify that we're running on the build server"
msgstr ""
@ -991,6 +1131,12 @@ msgstr ""
"Modo prueba - pone la salida solo en el directorio temporal, y siempre "
"construye, incluso cuando la salida ya exista."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1047,6 +1193,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "¡Se encontró una excepción desconocida!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1068,6 +1215,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1116,6 +1268,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Usar servidor de construccion"
@ -1167,6 +1323,11 @@ msgstr "X.509 'Nombre Distinguido' usado cuando se generaron las llaves"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1177,19 +1338,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "app-id en el formato APPID"
msgid "app-id to check for updates"
msgstr "app-id para verificar actualizaciones"
#, fuzzy
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "app-id con VersionCode opcional con el formato APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "app-id con versioncode opcional en el formato APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1200,6 +1348,7 @@ msgstr "app-id en el formato APPID"
msgid "applicationId to check for updates"
msgstr "app-id para verificar actualizaciones"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1241,6 +1390,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1265,6 +1419,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1437,6 +1596,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1462,7 +1626,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1482,11 +1646,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1498,3 +1683,27 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Agregar firmas GPG a paquetes en el repositorio"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Agregar firmas GPG a paquetes en el repositorio"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Limpiar actualización - no utiliza cachés, reprocesa todos los APK's"
#~ msgid "app-id in the form APPID"
#~ msgstr "app-id en el formato APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "app-id para verificar actualizaciones"
#, fuzzy
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "app-id con VersionCode opcional con el formato APPID[:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "app-id con versioncode opcional en el formato APPID[:VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@ -21,6 +21,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -57,19 +67,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -81,6 +91,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -116,9 +129,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr ""
#: ../fdroid
msgid "Add PGP signatures using GnuPG for packages in repo"
msgstr ""
@ -127,7 +137,9 @@ msgstr ""
msgid "Add a new application from its source code"
msgstr ""
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -144,11 +156,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -168,6 +175,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -177,6 +196,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -231,6 +256,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr ""
@ -247,9 +279,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -268,10 +297,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -280,6 +320,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -323,6 +367,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -406,6 +455,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
msgid "Failed to align application"
msgstr ""
@ -419,6 +478,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -450,10 +519,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -462,6 +537,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -471,6 +551,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -504,6 +589,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -543,6 +633,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -567,7 +661,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -665,11 +759,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -688,6 +788,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -801,6 +920,8 @@ msgstr ""
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -808,6 +929,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -904,6 +1030,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -930,6 +1066,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -954,6 +1095,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1007,6 +1154,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1028,6 +1176,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1076,6 +1229,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1121,6 +1278,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1131,18 +1293,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1151,6 +1301,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1191,6 +1342,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1215,6 +1371,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1386,6 +1546,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1411,7 +1576,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1431,11 +1596,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"

View File

@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: fdroidserver 0.8-135-g16dd6d28\n"
"Project-Id-Version: fdroidserver 0.8-155-ga8a3bf9\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 22:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -22,6 +22,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -58,19 +68,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -82,6 +92,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -117,9 +130,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr ""
#: ../fdroid
msgid "Add PGP signatures using GnuPG for packages in repo"
msgstr ""
@ -128,7 +138,9 @@ msgstr ""
msgid "Add a new application from its source code"
msgstr ""
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -145,11 +157,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -169,6 +176,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -178,6 +197,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -232,6 +257,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr ""
@ -248,9 +280,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -269,10 +298,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -281,6 +321,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -324,6 +368,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -407,6 +456,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
msgid "Failed to align application"
msgstr ""
@ -420,6 +479,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -451,10 +520,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -463,6 +538,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -472,6 +552,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -505,6 +590,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -544,6 +634,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -568,7 +662,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -666,11 +760,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -689,6 +789,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -802,6 +921,8 @@ msgstr ""
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -809,6 +930,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -905,6 +1031,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -931,6 +1067,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -955,6 +1096,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1008,6 +1155,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1029,6 +1177,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1077,6 +1230,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1122,6 +1279,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1132,18 +1294,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1152,6 +1302,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1192,6 +1343,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1216,6 +1372,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1387,6 +1547,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1412,7 +1577,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1432,11 +1597,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-10-17 11:46+0000\n"
"Last-Translator: xin <xin@riseup.net>\n"
"Language-Team: French <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt"
msgid "Add a new application from its source code"
msgstr "Ajouter une nouvelle application depuis son code source"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -149,11 +160,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -173,6 +179,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -182,6 +200,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -237,6 +261,13 @@ msgstr ""
msgid "Check for updates to 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
msgid "Clean after all scans have finished"
msgstr ""
@ -255,10 +286,6 @@ msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
"Mise à jour propre - n'utilise pas les caches, ré-exécute tous les APKs"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
"Mise à jour propre - n'utilise pas les caches, ré-exécute tous les APKs"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -277,10 +304,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -289,6 +327,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -332,6 +374,11 @@ msgstr ""
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"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -415,6 +462,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -429,6 +486,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -460,10 +527,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -472,6 +545,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -481,6 +559,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -514,6 +597,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -554,6 +642,10 @@ msgid "Interactively ask about things that need updating."
msgstr ""
"Demander de manière interactive les choses nécessitant une mise à jour."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -578,7 +670,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -676,11 +768,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -699,6 +797,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
#, fuzzy
msgid "Only print differences with the Play Store"
@ -815,6 +932,8 @@ msgstr "Lire toutes les métadonnées et quitter"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -822,6 +941,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -926,6 +1050,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -953,6 +1087,11 @@ msgstr "Définir l'éditeur à utiliser en mode interactif. Par défaut %s"
msgid "Specify editor to use in interactive mode. Default %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
msgid "Specify that we're running on the build server"
msgstr ""
@ -977,6 +1116,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
#, fuzzy
msgid "The base URL for the repo to log (default: https://f-droid.org)"
@ -1032,6 +1177,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Exception inconnue détectée !"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1053,6 +1199,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1101,6 +1252,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1152,6 +1307,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1162,18 +1322,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1182,6 +1330,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1223,6 +1372,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1247,6 +1401,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1420,6 +1579,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1445,7 +1609,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1465,11 +1629,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1481,3 +1666,14 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Ajouter des signatures GPG pour les paquets dans le dépôt"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Mise à jour propre - n'utilise pas les caches, ré-exécute tous les APKs"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-07-12 15:24+0000\n"
"Last-Translator: Roberto Albano De Rosa <robertoalbano@protonmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,9 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr ""
#: ../fdroid
msgid "Add PGP signatures using GnuPG for packages in repo"
msgstr ""
@ -130,7 +140,9 @@ msgstr ""
msgid "Add a new application from its source code"
msgstr "Aggiungi una nuova applicazione dal suo codice sorgente"
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -147,11 +159,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -171,6 +178,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -180,6 +199,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +259,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr ""
@ -250,9 +282,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -271,10 +300,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -283,6 +323,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -326,6 +370,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -409,6 +458,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
msgid "Failed to align application"
msgstr ""
@ -422,6 +481,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -453,10 +522,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -465,6 +540,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -474,6 +554,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -507,6 +592,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -546,6 +636,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -570,7 +664,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -668,11 +762,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -691,6 +791,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -804,6 +923,8 @@ msgstr ""
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -811,6 +932,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -907,6 +1033,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -933,6 +1069,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -957,6 +1098,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1010,6 +1157,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Eccezione sconosciuta trovata!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1031,6 +1179,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1079,6 +1232,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1124,6 +1281,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1134,18 +1296,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1154,6 +1304,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1194,6 +1345,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1218,6 +1374,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1390,6 +1550,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1415,7 +1580,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1435,11 +1600,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Kabyle (F-Droid)\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 22:13+0200\n"
"PO-Revision-Date: 2017-08-11 19:09+0100\n"
"Last-Translator: Belkacem Mohammed <belkacem77@gmail.com>\n"
"Language-Team: Kabyle <https://hosted.weblate.org/projects/f-droid/"
@ -19,6 +19,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -55,19 +65,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -79,6 +89,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -114,9 +127,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr ""
#: ../fdroid
msgid "Add PGP signatures using GnuPG for packages in repo"
msgstr ""
@ -125,7 +135,9 @@ msgstr ""
msgid "Add a new application from its source code"
msgstr ""
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -142,11 +154,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -166,6 +173,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -175,6 +194,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -229,6 +254,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr ""
@ -245,9 +277,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -266,10 +295,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -278,6 +318,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -321,6 +365,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -404,6 +453,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
msgid "Failed to align application"
msgstr ""
@ -417,6 +476,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -448,10 +517,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -460,6 +535,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -469,6 +549,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -502,6 +587,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -541,6 +631,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -565,7 +659,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -663,11 +757,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -686,6 +786,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -799,6 +918,8 @@ msgstr ""
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -806,6 +927,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -902,6 +1028,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -928,6 +1064,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -952,6 +1093,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1005,6 +1152,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1026,6 +1174,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1074,6 +1227,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1119,6 +1276,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1129,18 +1291,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1149,6 +1299,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1189,6 +1340,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1213,6 +1369,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1384,6 +1544,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1409,7 +1574,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1429,11 +1594,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: fdroidserver 0.8-74-ga380b9f\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 22:13+0200\n"
"PO-Revision-Date: 2017-10-17 14:20+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
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"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in 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!"
msgstr "'keystore' ble ikke funnet i config.py!"
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in 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!"
msgstr "'repo_keyalias' ble ikke funnet i config.py!"
@ -85,6 +95,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr "'keypass' ble ikke funnet i config.py!"
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -120,9 +133,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Legg til PGP-signaturer for pakker i pakkebrønnen ved bruk av GnuPG"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,7 +142,9 @@ msgstr "Legg til PGP-signaturer for pakker i pakkebrønnen ved bruk av GnuPG"
msgid "Add a new application from its source code"
msgstr "Legg til et nytt program fra dets kildekode"
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -152,11 +164,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -176,6 +183,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -185,6 +204,12 @@ msgstr "Program finnes i '{repo}', men har en lenke til {url}"
msgid "Appending .git is not necessary"
msgstr "Å legge til .git er ikke nødvendig"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -239,6 +264,13 @@ msgstr "Kategorien \"%s\" er ikke gyldig"
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Rydd opp etter at alle skanninger er fullførte"
@ -255,9 +287,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Kommainndelt liste over kategorier."
@ -276,10 +305,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -288,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -331,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
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}"
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
msgid "Failed to align application"
msgstr ""
@ -427,6 +486,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -458,10 +527,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -470,6 +545,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -479,6 +559,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -512,6 +597,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -551,6 +641,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -575,7 +669,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -673,11 +767,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -696,6 +796,25 @@ msgstr "Ingenting å gjøre"
msgid "Nothing to do for {appid}."
msgstr "Ingenting å gjøre for {appid}."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -809,6 +928,8 @@ msgstr "Les alle metadatafilene og avslutt"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -816,6 +937,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr "Behandler {apkfilename}"
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -912,6 +1038,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -938,6 +1074,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -962,6 +1103,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1015,6 +1162,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1036,6 +1184,11 @@ msgstr "Unødvendig innledende mellomrom"
msgid "Unnecessary trailing space"
msgstr "Unødvendig etterfølgende mellomrom"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1084,6 +1237,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1129,6 +1286,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1139,18 +1301,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1159,6 +1309,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1199,6 +1350,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1223,6 +1379,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1394,6 +1554,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1419,7 +1584,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1439,11 +1604,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1455,3 +1641,6 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Legg til PGP-signaturer for pakker i pakkebrønnen ved bruk av GnuPG"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-09-02 13:48+0000\n"
"Last-Translator: Edgar Moraes Diniz <edgar.diniz@posteo.net>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Adicione assinaturas gpg para os pacotes no repositório"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "Adicione assinaturas gpg para os pacotes no repositório"
msgid "Add a new application from its source code"
msgstr "Adicione um novo aplicativo a partir do seu código fonte"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "Também avisar sobre problemas de formatação, como rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Limpar depois que todos os escaneamentos terminarem"
@ -255,9 +286,6 @@ msgstr "Limpar todos os containers e então sair"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "Atualização limpa - não usa cache, reprocessa todos os APKs"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "Atualização limpa - não usa cache, reprocessa todos os APKs"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Lista de categorias separadas por vírgula."
@ -276,10 +304,21 @@ msgstr "Enviar mudanças"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -288,6 +327,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "Criar uma chave de assinatura do repositório em uma keystore"
@ -331,6 +374,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
msgid "Description '%s' is just the app's summary"
@ -417,6 +465,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -431,6 +489,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -464,10 +532,16 @@ msgstr ""
"Forçar a compilação de aplicativos desativados e continuar independentemente "
"de problemas de escaneamento. Apenas permitido no modo de teste."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -476,6 +550,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -485,6 +564,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -518,6 +602,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -557,6 +646,10 @@ msgstr "Interagir com o servidor HTTP do repositório"
msgid "Interactively ask about things that need updating."
msgstr "Perguntar interativamente sobre elementos que precisam de atualização."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -581,7 +674,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -680,11 +773,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -703,6 +802,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Apenas mostrar diferenças com a Play Store"
@ -822,6 +940,8 @@ msgstr "Ler todos os arquivos de metadados e sair"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -829,6 +949,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -932,6 +1057,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -960,6 +1095,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"
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
msgid "Specify that we're running on the build server"
msgstr "Especificar que estamos executando no servidor de compilação"
@ -986,6 +1126,12 @@ msgstr ""
"Modo de teste - coloque a saída apenas no diretório tmp e sempre compile, "
"mesmo que a saída já exista."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1042,6 +1188,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Uma exceção desconhecida foi encrontrada!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1063,6 +1210,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1111,6 +1263,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Usar servidor de compilação"
@ -1164,6 +1320,11 @@ msgstr "X.509 'Distiguished Name' usado ao gerar as chaves"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1174,20 +1335,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "app-id na forma APPID"
msgid "app-id to check for updates"
msgstr "app-id para verificar por atualizações"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
"app-id, com código de versão (versionCode) opcional, na forma APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
"app-id, com código de versão (versioncode) opcional, na forma APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1198,6 +1345,7 @@ msgstr "app-id na forma APPID"
msgid "applicationId to check for updates"
msgstr "app-id para verificar por atualizações"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1240,6 +1388,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1264,6 +1417,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1436,6 +1594,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1461,7 +1624,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1481,11 +1644,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1497,3 +1681,29 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Adicione assinaturas gpg para os pacotes no repositório"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Adicione assinaturas gpg para os pacotes no repositório"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr "Atualização limpa - não usa cache, reprocessa todos os APKs"
#~ msgid "app-id in the form APPID"
#~ msgstr "app-id na forma APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "app-id para verificar por atualizações"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr ""
#~ "app-id, com código de versão (versionCode) opcional, na forma APPID[:"
#~ "VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr ""
#~ "app-id, com código de versão (versioncode) opcional, na forma APPID[:"
#~ "VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@ -21,6 +21,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -57,19 +67,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -81,6 +91,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -116,9 +129,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr ""
#: ../fdroid
msgid "Add PGP signatures using GnuPG for packages in repo"
msgstr ""
@ -127,7 +137,9 @@ msgstr ""
msgid "Add a new application from its source code"
msgstr ""
msgid "Add gpg signatures for packages in repo"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
@ -144,11 +156,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -168,6 +175,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -177,6 +196,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -231,6 +256,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr ""
@ -247,9 +279,6 @@ msgstr ""
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr ""
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr ""
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr ""
@ -268,10 +297,21 @@ msgstr ""
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -280,6 +320,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr ""
@ -323,6 +367,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -406,6 +455,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
msgid "Failed to align application"
msgstr ""
@ -419,6 +478,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -450,10 +519,16 @@ msgid ""
"Only allowed in test mode."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -462,6 +537,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -471,6 +551,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -504,6 +589,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -543,6 +633,10 @@ msgstr ""
msgid "Interactively ask about things that need updating."
msgstr ""
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -567,7 +661,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -665,11 +759,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -688,6 +788,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr ""
@ -801,6 +920,8 @@ msgstr ""
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -808,6 +929,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -904,6 +1030,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -930,6 +1066,11 @@ msgstr ""
msgid "Specify editor to use in interactive mode. Default %s"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Specify editor to use in interactive mode. Default is {path}"
msgstr ""
#: ../fdroidserver/build.py
msgid "Specify that we're running on the build server"
msgstr ""
@ -954,6 +1095,12 @@ msgid ""
"the output already exists."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1007,6 +1154,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1028,6 +1176,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1076,6 +1229,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr ""
@ -1121,6 +1278,11 @@ msgstr ""
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1131,18 +1293,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr ""
msgid "app-id to check for updates"
msgstr ""
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr ""
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr ""
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
msgid "applicationId in the form APPID"
msgstr ""
@ -1151,6 +1301,7 @@ msgstr ""
msgid "applicationId to check for updates"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1191,6 +1342,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1215,6 +1371,10 @@ msgstr ""
msgid "expected one argument"
msgstr ""
#: ../fdroid
msgid "fdroid [-h|--help|--version] <command> [<args>]"
msgstr ""
#: /usr/lib/python3.5/optparse.py /usr/lib/python3.6/optparse.py
msgid "floating-point"
msgstr ""
@ -1386,6 +1546,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1411,7 +1576,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1431,11 +1596,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-06-23 14:47+0000\n"
"Last-Translator: monolifed <monolifed@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/f-droid/"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -60,19 +70,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -84,6 +94,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -119,10 +132,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Depodaki paketler için GPG imzaları ekle"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -132,8 +141,10 @@ msgstr "Depodaki paketler için GPG imzaları ekle"
msgid "Add a new application from its source code"
msgstr "Kaynak kodundan yeni bir uygulama ekle"
msgid "Add gpg signatures for packages in repo"
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
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr ""
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "Ayrıca biçimlendirme sorunları hakkında uyar, rewritemeta -l gibi"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -238,6 +262,13 @@ msgstr ""
msgid "Check for updates to applications"
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
msgid "Clean after all scans have finished"
msgstr "Tüm taramalar bitince temizle"
@ -255,9 +286,6 @@ msgstr "Bütün konteynerleri temizle ve sonra çık"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "Temiz güncelleme - önbellekleri kullanmaz, tüm APKları yeniden işler"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "Temiz güncelleme - önbellekleri kullanmaz, tüm APKları yeniden işler"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Kategorilerin virgülle ayrılmış listesi."
@ -276,10 +304,21 @@ msgstr "Değişiklikleri işle"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -288,6 +327,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "Bir anahtar deposunda, depo imzalama anahtarı yaratır"
@ -331,6 +374,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
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
#, python-format
msgid "Description '%s' is just the app's summary"
@ -416,6 +464,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -430,6 +488,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -463,10 +531,16 @@ msgstr ""
"Devre dışı uygulamaların oluşturulmasını zorunlu kıl, ve tarama problemi "
"olsa bile devam et. Sadece sınama kipinde izin verilir."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -475,6 +549,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -484,6 +563,11 @@ msgstr ""
msgid "Found non-file at %s"
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
#, python-format
msgid "Git checkout of '%s' failed"
@ -517,6 +601,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -556,6 +645,10 @@ msgstr "Depo HTTP sunucusu ile etkileşim kur"
msgid "Interactively ask about things that need updating."
msgstr "Güncelleme gerektiren şeyler hakkında etkileşimli olarak sor."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -580,7 +673,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -679,11 +772,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -702,6 +801,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Yalnızca Play Store ile olan farkları yazdır"
@ -817,6 +935,8 @@ msgstr "Tüm meta veri dosyalarını oku ve çık"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -824,6 +944,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -928,6 +1053,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -955,6 +1090,11 @@ msgstr "Etkileşimli kipte kullanılacak editörü belirtin. Öntanımlı %s"
msgid "Specify editor to use in interactive mode. Default %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
msgid "Specify that we're running on the build server"
msgstr "Oluşturma sunucusunda çalıştığımızı belirtin"
@ -981,6 +1121,12 @@ msgstr ""
"Sınama kipi - çıkışı sadece tmp dizinine koy, ve her zaman oluştur, çıkış "
"zaten var olsa bile."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
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)"
@ -1035,6 +1181,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Bilinmeyen özel durum bulundu!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1056,6 +1203,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1104,6 +1256,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Oluşturma sunucusu kullan"
@ -1153,6 +1309,11 @@ msgstr "Anahtarlar üretilirken X.509 'Distinguished Name' kullanılır"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1163,18 +1324,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "APPID biçiminde app-id"
msgid "app-id to check for updates"
msgstr "Güncellemeleri denetlemek için app-id"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "APPID[:VERCODE] biçiminde app-id, isteğe bağlı versionCode ile"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "APPID[:VERCODE] biçiminde app-id, isteğe bağlı versioncode ile"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1185,6 +1334,7 @@ msgstr "APPID biçiminde app-id"
msgid "applicationId to check for updates"
msgstr "Güncellemeleri denetlemek için app-id"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1226,6 +1376,11 @@ msgid_plural "conflicting option strings: %s"
msgstr[0] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1250,6 +1405,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1422,6 +1582,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1447,7 +1612,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1467,11 +1632,32 @@ msgid_plural "{0} apps, {1} key aliases"
msgstr[0] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1483,3 +1669,26 @@ msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Depodaki paketler için GPG imzaları ekle"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Depodaki paketler için GPG imzaları ekle"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Temiz güncelleme - önbellekleri kullanmaz, tüm APKları yeniden işler"
#~ msgid "app-id in the form APPID"
#~ msgstr "APPID biçiminde app-id"
#~ msgid "app-id to check for updates"
#~ msgstr "Güncellemeleri denetlemek için app-id"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "APPID[:VERCODE] biçiminde app-id, isteğe bağlı versionCode ile"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "APPID[:VERCODE] biçiminde app-id, isteğe bağlı versioncode ile"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-10-01 11:53+0000\n"
"Last-Translator: Володимир Бриняк <bardvv@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/f-droid/"
@ -25,6 +25,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -62,19 +72,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -86,6 +96,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -121,10 +134,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "Додайте підписи gpg для пакетів у репозиторії"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -134,8 +143,10 @@ msgstr "Додайте підписи gpg для пакетів у репози
msgid "Add a new application from its source code"
msgstr "Додайте новий застосунку зі свого вихідного коду"
msgid "Add gpg signatures for packages in repo"
msgstr "Додайте підписи gpg для пакетів у репозиторії"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore"
@ -151,11 +162,6 @@ msgstr "Дозволяє вказати іншу версію (або git гіл
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "Також попередити про проблеми форматування, наприклад rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -175,6 +181,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -184,6 +202,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -239,6 +263,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr "Перевірте наявність оновлень для застосунків"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr "Очистити після завершення сканування"
@ -256,9 +287,6 @@ msgstr "Очистити усі контейнери, а потім вийти"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "Очистити оновлення - не використовує кеш, повторно обробляє всі apks"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "Очистити оновлення - не використовує кеш, повторно обробляє всі apks"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "Список категорій, розділених комами."
@ -277,10 +305,21 @@ msgstr "Прийняти зміни"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -289,6 +328,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "Створіть ключ підписування репозиторію у сховищі ключів"
@ -332,6 +375,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "Видаліть APKs і/або OBBs без метаданих з репозиторію"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -417,6 +465,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -431,6 +489,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -464,10 +532,16 @@ msgstr ""
"Примусити створювати інвалідні додатки, і здійснювати розміщення незалежно "
"від проблем сканування. Лише дозволено в тестовому режимі."
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -476,6 +550,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -485,6 +564,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "Створення скелетів файлів метаданих, які відсутні"
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -518,6 +602,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -557,6 +646,10 @@ msgstr "Взаємодія з HTTP-сервером репозиторію"
msgid "Interactively ask about things that need updating."
msgstr "Інтерактивно запитайте про речі, які потребують оновлення."
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -581,7 +674,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -680,11 +773,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -703,6 +802,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "Друкувати відмінності тільки з Play Store"
@ -818,6 +936,8 @@ msgstr "Прочитайте всі файли метаданих і вийді
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -825,6 +945,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
msgid ""
"Recalculate aggregate stats - use when changes have been made that would "
@ -932,6 +1057,16 @@ msgstr ""
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -963,6 +1098,13 @@ 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
msgid "Specify that we're running on the build server"
msgstr "Вкажіть, що ми працюємо на сервері створення"
@ -989,6 +1131,12 @@ msgstr ""
"Режим тесту - надсилайте випуск тільки в каталог tmp, і завжди створюйте, "
"навіть якщо випуск вже існує."
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr ""
@ -1045,6 +1193,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "Виявлено невідому виняткову ситуацію!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1066,6 +1215,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1114,6 +1268,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "Використовуйте сервер створення"
@ -1165,6 +1323,11 @@ msgstr "X.509 'Distiguished Name' використовується при ств
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1175,18 +1338,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "app-id у формі APPID"
msgid "app-id to check for updates"
msgstr "app-id для перевірки наявність оновлень"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "app-id з необов'язковою версією коду у формі APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "app-id з необов'язковим кодом версії у формі APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1197,6 +1348,7 @@ msgstr "app-id у формі APPID"
msgid "applicationId to check for updates"
msgstr "app-id для перевірки наявність оновлень"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1239,6 +1391,11 @@ msgstr[0] ""
msgstr[1] ""
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
#, python-format
msgid "dest= is required for options like %r"
@ -1264,6 +1421,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1436,6 +1598,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1461,7 +1628,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1482,11 +1649,32 @@ msgstr[0] ""
msgstr[1] ""
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1500,3 +1688,26 @@ msgid_plural "{} builds succeeded"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "Додайте підписи gpg для пакетів у репозиторії"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "Додайте підписи gpg для пакетів у репозиторії"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr ""
#~ "Очистити оновлення - не використовує кеш, повторно обробляє всі apks"
#~ msgid "app-id in the form APPID"
#~ msgstr "app-id у формі APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "app-id для перевірки наявність оновлень"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "app-id з необов'язковою версією коду у формі APPID[:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "app-id з необов'язковим кодом версії у формі APPID[:VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-07-24 02:40+0000\n"
"Last-Translator: sima <lin2s@riseup.net>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -83,6 +93,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -118,10 +131,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "添加包 gpg 签名至资源库"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -131,8 +140,10 @@ msgstr "添加包 gpg 签名至资源库"
msgid "Add a new application from its source code"
msgstr "从源码添加新的应用程序"
msgid "Add gpg signatures for packages in repo"
msgstr "添加包 gpg 签名至资源库"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore"
@ -148,11 +159,6 @@ msgstr "可让运行初始导入时指定不同修订(或 git 分支)"
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "同时提示格式问题,如 rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -172,6 +178,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -181,6 +199,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +258,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr "检查应用更新"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr "扫描全部完成后清除"
@ -251,9 +282,6 @@ msgstr "清除所有容器,然后退出"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "清除更新:不用缓存,重新处理全部 apk"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "清除更新:不用缓存,重新处理全部 apk"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "逗号分割的目录列表。"
@ -272,10 +300,21 @@ msgstr "提交更改"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -284,6 +323,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "在密钥存储中创建资源库签名密钥"
@ -327,6 +370,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "从资源库中删除没有元数据的 APK 和 OBB"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -410,6 +458,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -424,6 +482,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -455,10 +523,16 @@ msgid ""
"Only allowed in test mode."
msgstr "强制编译已禁用应用,忽略扫描出错。仅用于测试模式。"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -467,6 +541,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -476,6 +555,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "创建缺少的主干元数据文件"
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -509,6 +593,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -548,6 +637,10 @@ msgstr "与资源库 HTTP 服务器互动"
msgid "Interactively ask about things that need updating."
msgstr "需更新事项的互动提示。"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -572,7 +665,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -671,11 +764,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -694,6 +793,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "仅输出与 Play Store 的差异"
@ -809,6 +927,8 @@ msgstr "读取全部元数据文件并退出"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -816,6 +936,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -914,6 +1039,16 @@ msgstr "跳过二进制源码扫描和其他问题"
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -941,6 +1076,11 @@ msgstr "指定编辑器使用互动模式。默认 %s"
msgid "Specify editor to use in interactive mode. Default %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
msgid "Specify that we're running on the build server"
msgstr "指定在编译服务器上运行"
@ -965,6 +1105,12 @@ msgid ""
"the output already exists."
msgstr "测试模式:仅将输出保存至 tmp 目录,即使输出已存在,仍然编译。"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "资源库基 URL的日志默认为 https://f-droid.org"
@ -1019,6 +1165,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "发生未知异常!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1040,6 +1187,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1088,6 +1240,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "使用编译服务器"
@ -1135,6 +1291,11 @@ msgstr "X.509 生成密钥时所用的“可分辨名称”"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1145,18 +1306,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "app-id格式APPID"
msgid "app-id to check for updates"
msgstr "app-id用于检查更新"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "带有可选项 versionCode 的 app-id格式APPID[:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "带有可选项 versioncode 的 app-id格式APPID[:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1167,6 +1316,7 @@ msgstr "app-id格式APPID"
msgid "applicationId to check for updates"
msgstr "app-id用于检查更新"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1207,6 +1357,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s"
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
#, python-format
msgid "dest= is required for options like %r"
@ -1230,6 +1385,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1402,6 +1562,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1427,7 +1592,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1446,11 +1611,32 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1460,3 +1646,25 @@ msgstr[0] ""
msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "添加包 gpg 签名至资源库"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "添加包 gpg 签名至资源库"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr "清除更新:不用缓存,重新处理全部 apk"
#~ msgid "app-id in the form APPID"
#~ msgstr "app-id格式APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "app-id用于检查更新"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "带有可选项 versionCode 的 app-id格式APPID[:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "带有可选项 versioncode 的 app-id格式APPID[:VERCODE]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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 22:13+0200\n"
"PO-Revision-Date: 2017-08-31 02:59+0000\n"
"Last-Translator: ezjerry liao <ezjerry@gmail.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/f-"
@ -24,6 +24,16 @@ msgstr ""
msgid "\"%s/\" has no matching metadata file!"
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
#, python-format
msgid "%(option)s option requires %(number)d argument"
@ -59,19 +69,19 @@ msgstr ""
msgid "%s option does not take a value"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keypass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystore' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'keystorepass' not found in config.py!"
msgstr ""
#: ../fdroidserver/index.py
#: ../fdroidserver/index.py ../fdroidserver/common.py
msgid "'repo_keyalias' not found in config.py!"
msgstr ""
@ -83,6 +93,9 @@ msgstr ""
msgid "'sdk_path' not set in 'config.py'!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "'{aapt}' is too old, fdroid requires build-tools-23.0.0 or newer!"
@ -118,10 +131,6 @@ msgstr ""
msgid "/issues is missing"
msgstr ""
#, fuzzy
msgid "Add PGP signatures for packages in repo using GnuPG"
msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
#: ../fdroid
#, fuzzy
msgid "Add PGP signatures using GnuPG for packages in repo"
@ -131,8 +140,10 @@ msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
msgid "Add a new application from its source code"
msgstr "從原始程式碼增加一個新的應用程式"
msgid "Add gpg signatures for packages in repo"
msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Adding new repo for only {name}"
msgstr ""
#: ../fdroidserver/init.py
msgid "Alias of the repo signing key in the keystore"
@ -148,11 +159,6 @@ msgstr "允許為初始匯入指定不同的校訂(或 git 分支)"
msgid "Also warn about formatting issues, like rewritemeta -l"
msgstr "還要提醒格式化問題,如 rewritemeta -l"
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android Build Tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android SDK '{path}' does not have '{dirname}' installed!"
@ -172,6 +178,18 @@ msgstr ""
msgid "Android SDK path '{path}' is not a directory!"
msgstr ""
#. Translators: "build-tools" is the file name of a package from
#. Google, it is part of the Android SDK. So it probably shouldn't be
#. translated or transliterated.
#: ../fdroidserver/common.py
#, python-brace-format
msgid "Android build-tools path '{path}' does not exist!"
msgstr ""
#: ../fdroidserver/update.py
msgid "AndroidManifest.xml has no date"
msgstr ""
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "App is in '{repo}' but has a link to {url}"
@ -181,6 +199,12 @@ msgstr ""
msgid "Appending .git is not necessary"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Archiving {apkfilename} with invalid signature!"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Branch '{branch}' used as commit in build '{versionName}'"
@ -234,6 +258,13 @@ msgstr ""
msgid "Check for updates to applications"
msgstr "檢查應用程式更新"
#: ../fdroidserver/update.py
#, python-brace-format
msgid ""
"Checking archiving for {appid} - apks:{integer}, keepversions:{keep}, "
"archapks:{arch}"
msgstr ""
#: ../fdroidserver/dscanner.py
msgid "Clean after all scans have finished"
msgstr "所有掃描完成後清除"
@ -251,9 +282,6 @@ msgstr "清除所有容器,然後退出"
msgid "Clean update - don't uses caches, reprocess all APKs"
msgstr "清除更新 - 不使用快取,重新處理全部的 apk"
msgid "Clean update - don't uses caches, reprocess all apks"
msgstr "清除更新 - 不使用快取,重新處理全部的 apk"
#: ../fdroidserver/import.py
msgid "Comma separated list of categories."
msgstr "以逗號分隔類別清單。"
@ -272,10 +300,21 @@ msgstr "提交變更"
msgid "Could not find '{command}' on your system"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/import.py
msgid "Couldn't find latest version code"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/import.py
msgid "Couldn't find latest version name"
msgstr ""
@ -284,6 +323,10 @@ msgstr ""
msgid "Couldn't find package ID"
msgstr ""
#: ../fdroidserver/update.py
msgid "Cowardily refusing to overwrite existing signing key setup!"
msgstr ""
#: ../fdroidserver/update.py
msgid "Create a repo signing key in a keystore"
msgstr "在金鑰庫中建立一個軟體倉庫的簽署金鑰"
@ -327,6 +370,11 @@ msgstr ""
msgid "Delete APKs and/or OBBs without metadata from the repo"
msgstr "從軟體倉庫刪除缺少中介資料的 APK 和/或 OBB"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Deleting unknown file: {path}"
msgstr ""
#: ../fdroidserver/lint.py
#, python-format
msgid "Description '%s' is just the app's summary"
@ -410,6 +458,16 @@ msgstr ""
msgid "Failed fetching signatures for '{apkfilename}': {error}"
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
#, fuzzy
msgid "Failed to align application"
@ -424,6 +482,16 @@ msgstr ""
msgid "Failed to get APK manifest information"
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
#, python-brace-format
msgid "Failed to install '{apkfilename}' on {dev}: {error}"
@ -455,10 +523,16 @@ msgid ""
"Only allowed in test mode."
msgstr "強制停用應用程式的構建,並且忽視掃描問題而繼續。只允許在測試模式下。"
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found \"{path}\" graphic without metadata for app \"{name}\"!"
msgstr ""
#: ../fdroidserver/common.py
msgid "Found invalid appids in arguments"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
msgid "Found invalid versionCodes for some apps"
msgstr ""
@ -467,6 +541,11 @@ msgstr ""
msgid "Found multiple signing certificates for repository."
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Found multiple signing certificates in {path}"
msgstr ""
#: ../fdroidserver/index.py
msgid "Found no signing certificates for repository."
msgstr ""
@ -476,6 +555,11 @@ msgstr ""
msgid "Found non-file at %s"
msgstr ""
#: ../fdroidserver/update.py
#, fuzzy, python-brace-format
msgid "Generated skeleton metadata for {appid}"
msgstr "建立缺少的骨幹中介資料檔案"
#: ../fdroidserver/common.py
#, python-format
msgid "Git checkout of '%s' failed"
@ -509,6 +593,11 @@ msgstr ""
msgid "Ignoring package without metadata: "
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Ignoring stale cache data for {apkfilename}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Ignoring {ext} file at '{path}'"
@ -548,6 +637,10 @@ msgstr "與軟體倉庫 HTTP 伺服器互動"
msgid "Interactively ask about things that need updating."
msgstr "以對話方式詢問需要更新的內容。"
#: ../fdroidserver/update.py
msgid "Invalid APK"
msgstr ""
#: ../fdroidserver/lint.py
msgid "Invalid bulleted list"
msgstr ""
@ -572,7 +665,7 @@ msgstr ""
msgid "Invalid package name {0}"
msgstr ""
#: ../fdroidserver/publish.py
#: ../fdroidserver/publish.py ../fdroidserver/update.py
msgid "Java JDK not found! Install in standard location or set java_paths!"
msgstr ""
@ -671,11 +764,17 @@ msgstr ""
msgid "No signed output directory - nothing to do"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "No signing certificates found in {path}"
msgstr ""
#: ../fdroidserver/common.py
#, python-format
msgid "No such package: %s"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/common.py
#, python-brace-format
msgid "No such versionCode {versionCode} for app {appid}"
@ -694,6 +793,25 @@ msgstr ""
msgid "Nothing to do for {appid}."
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../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/update.py
#, python-brace-format
msgid "Only PNG and JPEG are supported for graphics, found: {path}"
msgstr ""
#: ../fdroidserver/checkupdates.py
msgid "Only print differences with the Play Store"
msgstr "僅印出與 Play Store 的不同處"
@ -809,6 +927,8 @@ msgstr "讀取所有的中介資料檔案並退出"
msgid "Reading '{config_file}'"
msgstr ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#. https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/common.py
#, python-brace-format
msgid ""
@ -816,6 +936,11 @@ msgid ""
"'{apkfilename}'"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Reading {apkfilename} from cache"
msgstr ""
#: ../fdroidserver/stats.py
#, fuzzy
msgid ""
@ -914,6 +1039,16 @@ msgstr "跳過掃描二進制碼和其它問題的原始碼"
msgid "Skipping '{apkfilename}' with invalid signature!"
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
#, python-brace-format
msgid "Skipping {appid}: disabled"
@ -941,6 +1076,11 @@ msgstr "指定編輯器在互動模式使用。預設 %s"
msgid "Specify editor to use in interactive mode. Default %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
msgid "Specify that we're running on the build server"
msgstr "指定在構建伺服務器上運作"
@ -965,6 +1105,12 @@ msgid ""
"the output already exists."
msgstr "測試模式 - 將輸出只放在 tmp 目錄中,即使輸出已經存在,仍然構建。"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/update.py
#, python-brace-format
msgid "The OBB version code must come after \"{name}.\":"
msgstr ""
#: ../fdroidserver/btlog.py
msgid "The base URL for the repo to log (default: https://f-droid.org)"
msgstr "軟體倉庫日誌的總部網址預設https://f-droid.org"
@ -1019,6 +1165,7 @@ msgstr ""
msgid "Unknown exception found!"
msgstr "發現未知的異常!"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "Unknown file '{filename}' in build '{versionName}'"
@ -1040,6 +1187,11 @@ msgstr ""
msgid "Unnecessary trailing space"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "Unsupported graphics file found: {path}"
msgstr ""
#: ../fdroidserver/rewritemeta.py
#, python-brace-format
msgid "Unsupported metadata format, use: --to [{supported}]"
@ -1088,6 +1240,10 @@ msgstr ""
msgid "Use /HEAD instead of /master to point at a file in the default branch"
msgstr ""
#: ../fdroidserver/update.py
msgid "Use `fdroid update -c` to create it."
msgstr ""
#: ../fdroidserver/build.py
msgid "Use build server"
msgstr "使用構建伺服器"
@ -1135,6 +1291,11 @@ msgstr "產生金鑰時使用 X.509 '專有名稱'"
msgid "You can use ANDROID_HOME to set the path to your SDK, i.e.:"
msgstr ""
#: ../fdroidserver/update.py
#, python-brace-format
msgid "adding to {name}: {path}"
msgstr ""
#: /usr/lib/python3.5/argparse.py /usr/lib/python3.6/argparse.py
#, python-format
msgid "ambiguous option: %(option)s could match %(matches)s"
@ -1145,18 +1306,6 @@ msgstr ""
msgid "ambiguous option: %s (%s?)"
msgstr ""
msgid "app-id in the form APPID"
msgstr "app-id格式為 APPID"
msgid "app-id to check for updates"
msgstr "以 app-id 檢查更新"
msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
msgstr "app-id 具有任選的 versionCode 在此格式為 APPID [:VERCODE]"
msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
msgstr "app-id 具有任選的 versioncode 在此格式為 APPID [:VERCODE]"
#: ../fdroidserver/lint.py ../fdroidserver/rewritemeta.py
#, fuzzy
msgid "applicationId in the form APPID"
@ -1167,6 +1316,7 @@ msgstr "app-id格式為 APPID"
msgid "applicationId to check for updates"
msgstr "以 app-id 檢查更新"
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vcode
#: ../fdroidserver/verify.py ../fdroidserver/publish.py
#: ../fdroidserver/dscanner.py ../fdroidserver/build.py
#: ../fdroidserver/scanner.py ../fdroidserver/install.py
@ -1207,6 +1357,11 @@ msgid "conflicting option string: %s"
msgid_plural "conflicting option strings: %s"
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
#, python-format
msgid "dest= is required for options like %r"
@ -1230,6 +1385,11 @@ msgstr ""
msgid "expected one argument"
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
msgid "floating-point"
msgstr ""
@ -1402,6 +1562,11 @@ msgstr ""
msgid "signed APK, either a file-path or HTTPS URL."
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
#, python-format
msgid "the following arguments are required: %s"
@ -1427,7 +1592,7 @@ msgstr ""
msgid "unsafe permissions on '{config_file}' (should be 0600)!"
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: "
msgstr ""
@ -1446,11 +1611,32 @@ msgid "{0} app, {1} key aliases"
msgid_plural "{0} apps, {1} key aliases"
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 ""
#. Translators: https://developer.android.com/guide/topics/manifest/manifest-element.html#vname
#: ../fdroidserver/lint.py
#, python-brace-format
msgid "{appid}: Unknown extlib {path} in build '{versionName}'"
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
msgid "{} build failed"
msgid_plural "{} builds failed"
@ -1460,3 +1646,25 @@ msgstr[0] ""
msgid "{} build succeeded"
msgid_plural "{} builds succeeded"
msgstr[0] ""
#, fuzzy
#~ msgid "Add PGP signatures for packages in repo using GnuPG"
#~ msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
#~ msgid "Add gpg signatures for packages in repo"
#~ msgstr "在軟體倉庫中加入套件包的 gpg 簽署"
#~ msgid "Clean update - don't uses caches, reprocess all apks"
#~ msgstr "清除更新 - 不使用快取,重新處理全部的 apk"
#~ msgid "app-id in the form APPID"
#~ msgstr "app-id格式為 APPID"
#~ msgid "app-id to check for updates"
#~ msgstr "以 app-id 檢查更新"
#~ msgid "app-id with optional versionCode in the form APPID[:VERCODE]"
#~ msgstr "app-id 具有任選的 versionCode 在此格式為 APPID [:VERCODE]"
#~ msgid "app-id with optional versioncode in the form APPID[:VERCODE]"
#~ msgstr "app-id 具有任選的 versioncode 在此格式為 APPID [:VERCODE]"

View File

@ -1,3 +1,37 @@
[aliases]
release = register sdist upload --sign
release = register compile_catalog sdist upload --sign
# All this below is for Babel config. Ideally we would only use
# Babel, but it is still missing some key features that gettext gives
# us. So for now, this Babel setup is just to make it easy for Python
# people who are used to it. Babel is missing:
#
# * properly tagging various Python formats in the comments
# * --add-location=file
# * --join-existing
# * --sort-output on update
#
# So for now the canonical way to update the template and translation
# files is: `make -C locale`
[extract_messages]
keywords = _
charset = UTF-8
sort_output = true
no_location = true
add-comments = true
output_file = locale/fdroidserver.pot
msgid-bugs-address = https://gitlab.com/fdroid/fdroidserver/issues
[update_catalog]
output_dir = locale
input_file = locale/fdroidserver.pot
[init_catalog]
input_file = locale/fdroidserver.pot
output_dir = locale
[compile_catalog]
domain = fdroidserver
directory = locale

View File

@ -2,25 +2,47 @@
from setuptools import setup
import os
import re
import shutil
import sys
# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
if os.access(sys.prefix, os.W_OK | os.X_OK):
data_prefix = sys.prefix
else:
data_prefix = '.'
def get_data_files():
# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
if os.access(sys.prefix, os.W_OK | os.X_OK):
data_prefix = sys.prefix
else:
data_prefix = '.'
data_files = []
with open('MANIFEST.in') as fp:
data = fp.read()
data_files.append((data_prefix + '/share/doc/fdroidserver/examples',
['buildserver/config.buildserver.py', ]
+ re.findall(r'include (examples/.*)', data)))
for f in re.findall(r'include (locale/[a-z][a-z][a-zA-Z_]*/LC_MESSAGES/fdroidserver.mo)', data):
d = os.path.join(data_prefix, 'share', os.path.dirname(f))
data_files.append((d, [f, ]))
return data_files
# PyPI accepts reST not Markdown
if shutil.which('pandoc'):
print('Using reST README')
import subprocess
readme = subprocess.check_output(['pandoc', '--from=markdown', '--to=rst', 'README.md'],
universal_newlines=True)
if os.path.exists('README.md'):
if shutil.which('pandoc'):
print('Using reST README')
import subprocess
subprocess.check_call(['pandoc', '--from=markdown', '--to=rst', 'README.md',
'--output=README.rst'], universal_newlines=True)
with open('README.rst') as fp:
readme = fp.read()
else:
print('Using Markdown README')
with open('README.md') as fp:
readme = fp.read()
else:
print('Using Markdown README')
with open('README.md') as fp:
readme = fp.read()
readme = ''
setup(name='fdroidserver',
version='0.8',
@ -32,16 +54,7 @@ setup(name='fdroidserver',
license='AGPL-3.0',
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
scripts=['fdroid', 'fd-commit', 'makebuildserver'],
data_files=[
(data_prefix + '/share/doc/fdroidserver/examples',
['buildserver/config.buildserver.py',
'examples/config.py',
'examples/fdroid-icon.png',
'examples/makebuildserver.config.py',
'examples/opensc-fdroid.cfg',
'examples/public-read-only-s3-bucket-policy.json',
'examples/template.yml']),
],
data_files=get_data_files(),
python_requires='>=3.4',
install_requires=[
'clint',

View File

@ -63,14 +63,20 @@ fi
#------------------------------------------------------------------------------#
# test building the source tarball, then installing it
cd $WORKSPACE
python3 setup.py sdist
python3 setup.py compile_catalog sdist
# make sure translation files got compiled and included
tar tzf dist/fdroidserver-*.tar.gz | grep locale/de/LC_MESSAGES/fdroidserver.mo
rm -rf $WORKSPACE/env
$pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1
pip3 install dist/fdroidserver-*.tar.gz
pip3 install --quiet setuptools==33.1.1
pip3 install --quiet dist/fdroidserver-*.tar.gz
# make sure translation files were installed
test -e $WORKSPACE/env/share/locale/de/LC_MESSAGES/fdroidserver.mo
# run tests in new pip+pyvenv install
fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource
@ -83,9 +89,12 @@ rm -rf $WORKSPACE/env
$pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1
pip3 install -e $WORKSPACE
python3 setup.py install
pip3 install --quiet setuptools==33.1.1 Babel
pip3 install --quiet -e $WORKSPACE
python3 setup.py compile_catalog install
# make sure translation files were installed
test -e $WORKSPACE/env/share/locale/de/LC_MESSAGES/fdroidserver.mo
# run tests in new pip+pyvenv install
fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource

65
tests/exception.TestCase Executable file
View File

@ -0,0 +1,65 @@
#!/usr/bin/env python3
# http://www.drdobbs.com/testing/unit-testing-with-python/240165163
import inspect
import optparse
import os
import sys
import unittest
localmodule = os.path.realpath(
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..'))
print('localmodule: ' + localmodule)
if localmodule not in sys.path:
sys.path.insert(0, localmodule)
import fdroidserver.common
import fdroidserver.exception
class ExceptionTest(unittest.TestCase):
'''fdroidserver/exception.py'''
def test_FDroidException(self):
try:
raise fdroidserver.exception.FDroidException()
except fdroidserver.exception.FDroidException as e:
str(e)
try:
raise fdroidserver.exception.FDroidException(9)
except fdroidserver.exception.FDroidException as e:
str(e)
try:
raise fdroidserver.exception.FDroidException(-123.12234)
except fdroidserver.exception.FDroidException as e:
str(e)
try:
raise fdroidserver.exception.FDroidException("this is a string")
except fdroidserver.exception.FDroidException as e:
str(e)
try:
raise fdroidserver.exception.FDroidException(['one', 'two', 'three'])
except fdroidserver.exception.FDroidException as e:
str(e)
try:
raise fdroidserver.exception.FDroidException(('one', 'two', 'three'))
except fdroidserver.exception.FDroidException as e:
str(e)
if __name__ == "__main__":
parser = optparse.OptionParser()
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
(fdroidserver.exception.options, args) = parser.parse_args(['--verbose'])
fdroidserver.common.options = fdroidserver.exception.options
newSuite = unittest.TestSuite()
newSuite.addTest(unittest.makeSuite(ExceptionTest))
unittest.main()