From 2f413d4677cdf4fc8ffef3e5c7b14a97823d76c7 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 Oct 2011 17:05:32 +0200 Subject: [PATCH 01/99] [git] update .gitignore file, add #*# files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 01241985a..3b352a49c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.pyo misc/po/*.mo *.directory +#*# From 612e39a1e81026584a8f8b3160bc28de01275b5c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 Oct 2011 17:06:03 +0200 Subject: [PATCH 02/99] [entropy.server] drop warning when running as user, no need to have it in lib --- libraries/entropy/server/interfaces/main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 4fe193866..e9e2949aa 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -1071,10 +1071,6 @@ class Server(Client): fake_default_repo_desc = 'this is a fake repository'): self.__instance_destroyed = False - if etpConst['uid'] != 0: - mytxt = _("Entropy Server interface must be run as root") - import warnings - warnings.warn(mytxt) self._cacher = EntropyCacher() # settings From ea47fe703df6ddf4388f4f05201049ffa5be3b20 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 Oct 2011 17:10:26 +0200 Subject: [PATCH 03/99] [eit] first chunk of code for the new server-side repository management toolkit (greatly inspired to git) --- server/eit | 389 ------------------------------ server/eit.py | 14 ++ server/eit/__init__.py | 11 + server/eit/commands/__init__.py | 11 + server/eit/commands/command.py | 53 ++++ server/eit/commands/commit.py | 368 ++++++++++++++++++++++++++++ server/eit/commands/descriptor.py | 73 ++++++ server/eit/commands/help.py | 55 +++++ server/eit/commands/status.py | 179 ++++++++++++++ server/eit/main.py | 82 +++++++ 10 files changed, 846 insertions(+), 389 deletions(-) delete mode 100755 server/eit create mode 100755 server/eit.py create mode 100644 server/eit/__init__.py create mode 100644 server/eit/commands/__init__.py create mode 100644 server/eit/commands/command.py create mode 100644 server/eit/commands/commit.py create mode 100644 server/eit/commands/descriptor.py create mode 100644 server/eit/commands/help.py create mode 100644 server/eit/commands/status.py create mode 100644 server/eit/main.py diff --git a/server/eit b/server/eit deleted file mode 100755 index 6501faa24..000000000 --- a/server/eit +++ /dev/null @@ -1,389 +0,0 @@ -#!/usr/bin/python2 -O -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server Wrapper Tool}. - -""" -import os -import sys -import subprocess -sys.path.insert(0, '../libraries') -sys.path.insert(1, '../client') -sys.path.insert(2, '../server') -sys.path.insert(3, '/usr/lib/entropy/client') -sys.path.insert(4, '/usr/lib/entropy/libraries') -sys.path.insert(5, '/usr/lib/entropy/server') - -from entropy.i18n import _ -import entropy.tools -from text_tools import print_menu -from entropy.output import is_stdout_a_tty, nocolor, print_error, print_info, \ - print_warning, purple, teal -from entropy.const import etpConst, etpUi - -REAGENT_EXEC = "/usr/sbin/reagent" -ACTIVATOR_EXEC = "/usr/sbin/activator" - -help_opts = [ - None, - (0, " ~ eit ~ ", 1, - 'The Stupid Entropy Content Tracker (wrapper) - (C) %s' % ( - entropy.tools.get_year(),) ), - None, - (0, _('Options'), 0, None), - None, - (1, 'add ', 3, _('commit to current repository only the provided packages')), - (1, 'addto ', 1, _('commit to give repository only the provided packages')), - (1, 'bump []', 2, _('bump repository revision, this will force upload')), - (1, 'checkout ', 2, _('switch from a repository to another')), - (1, 'cleanup []', 2, _('clean expired packages from a repository')), - (1, 'commit []', 2, _('commit changes to repository')), - (1, 'cp ', 2, _('copy packages from a repository to another')), - (1, 'deps ', 3, _('edit package dependencies')), - (1, 'depsin ', 1, _('edit package dependencies in given repository')), - (1, 'deptest []', 2, _('edit package dependencies')), - (1, 'fit ', 2, _('inject package files into the current repository')), - (1, 'graph [--complete]', 1, _('show dependency graph of packages')), - (1, 'init ', 2, _('initialize repository (erasing all its content)')), - (1, 'libtest [--dump]', 2, _('look for missing libraries (scan system)')), - (1, 'linktest []', 2, _('look for missing libraries (scan repository metadata)')), - (1, 'list []', 2, _('list packages in repository')), - (1, 'log []', 2, _('show log for repository')), - (1, 'mv ', 2, _('move packages from a repository to another')), - (1, 'own ', 2, _('show owners of files (in current repository)')), - (1, 'push []', 2, _('push committed packages remotely')), - (1, 'pushas ', 1, _('push committed packages to given fake repository')), - (1, 'repack ', 3, _('re-package list of packages in default repository')), - (1, 'repackin ', 1, _('re-package list of packages in given repository')), - (1, 'repo', 4, _('show current repository')), - (1, 'reset []', 2, _('reset repository to remote status')), - (1, 'revgraph [--complete]', 1, _('show reverse dependency graph of packages')), - (1, 'rm ', 3, _('remove packages from current repository')), - (1, 'rmfrom ', 1, _('remove packages from given repository')), - (1, 'search ', 2, _('search for privided package dependencies')), - (1, 'show ', 2, _('show matches for privided package dependencies')), - (1, 'status []', 2, _('show current repositories status')), - (1, 'vacuum []', 2, _('clean unavailable packages from a repository')), - None, -] - -options = sys.argv[1:] - -import re -opt_r = re.compile("^(\\-)([a-z]+)$") -for n in range(len(options)): - if opt_r.match(options[n]): - x = options[n] - del options[n] - options.extend(["-%s" % (d,) for d in x[1:]]) - -# preliminary options parsing -_options = [] -no_color = False -force_color = False -for opt in options: - if opt in ["--nocolor", "-N"]: - nocolor() - no_color = True - elif opt in ["--color", "-C"]: - force_color = True - elif opt in ["--quiet", "-q"]: - etpUi['quiet'] = True - elif opt in ["--verbose", "-v"]: - etpUi['verbose'] = True - elif opt in ["--ask", "-a"]: - etpUi['ask'] = True - elif opt in ["--pretend", "-p"]: - etpUi['pretend'] = True - else: - _options.append(opt) -options = _options - -# Check if we need to disable colors -if (not force_color) and (not is_stdout_a_tty()): - nocolor() - -# print help -if not options or ("--help" in options) or ("-h" in options): - print_menu(help_opts) - if len(options) < 1: - print_error("not enough parameters") - raise SystemExit(1) - raise SystemExit(0) - -def _exec_args(args): - myargs = [] - if etpUi['quiet']: - myargs.append("--quiet") - if etpUi['verbose']: - myargs.append("--verbose") - if etpUi['ask']: - myargs.append("--ask") - if etpUi['pretend']: - myargs.append("--pretend") - if force_color: - myargs.append("--color") - if no_color: - myargs.append("--nocolor") - os.execvpe(args[0], args + myargs, os.environ) - -def get_entropy_server(quiet = False): - oldquiet = etpUi['quiet'] - try: - if quiet: - etpUi['quiet'] = True - from entropy.server.interfaces import Server - return Server(community_repo = etpConst['community']['mode']) - finally: - if quiet: - etpUi['quiet'] = oldquiet - -def _get_available_repositories(): - server = None - try: - server = get_entropy_server(quiet = True) - repository_ids = server.repositories() - return repository_ids - finally: - if server is not None: - server.shutdown() - -main_cmd = options.pop(0) - -if main_cmd == "status": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "status"] + options) - -elif main_cmd == "add" and options: - _exec_args([REAGENT_EXEC, "update", "--atoms"] + options) - -elif main_cmd == "addto" and options and len(options) > 1: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "update", "--atoms"] + options) - -elif main_cmd == "repack" and options: - _exec_args([REAGENT_EXEC, "update", "--atoms"] + options + \ - ["--repackage"] + options) - -elif main_cmd == "repackin" and options and len(options) > 1: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "update", "--atoms"] + options + \ - ["--repackage"] + options) - -elif main_cmd == "bump": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "repo", "bump"]) - -elif (main_cmd == "checkout") and options and len(options) < 2: - repository_id = options.pop(0) - _exec_args([REAGENT_EXEC, "repo", "default", repository_id]) - -elif main_cmd == "cleanup": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([ACTIVATOR_EXEC, "tidy"]) - -elif main_cmd == "vacuum": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([ACTIVATOR_EXEC, "repo", "vacuum"]) - -elif main_cmd == "commit": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "update"] + options) - else: - _exec_args([REAGENT_EXEC, "update"] + options) - -elif (main_cmd == "fit") and options: - _exec_args([REAGENT_EXEC, "inject"] + options) - -elif main_cmd == "list": - myopts = [] - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - myopts += [options[0]] - _exec_args([REAGENT_EXEC, "query", "list"] + myopts) - -elif main_cmd == "graph" and options and \ - not ((len(set(options)) == 1) and ("--complete" in options)): - _exec_args([REAGENT_EXEC, "query", "graph"] + options) - -elif main_cmd == "revgraph" and options and \ - not ((len(set(options)) == 1) and ("--complete" in options)): - _exec_args([REAGENT_EXEC, "query", "revgraph"] + options) - -elif (main_cmd == "init") and options and len(options) < 2: - repository_id = options.pop(0) - avail_repos = _get_available_repositories() - if repository_id in avail_repos: - os.environ['ETP_REPO'] = repository_id - _exec_args([REAGENT_EXEC, "repo", "init"]) - -elif main_cmd == "libtest": - lt_options = [] - if "--dump" in options: - lt_options.append("--dump") - _exec_args([REAGENT_EXEC, "libtest"] + lt_options) - -elif main_cmd == "linktest": - _exec_args([REAGENT_EXEC, "linktest"] + options) - -elif main_cmd == "deptest": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "deptest"]) - -elif (main_cmd == "own") and options: - _exec_args([REAGENT_EXEC, "query", "belongs"] + options) - -elif main_cmd == "push": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([ACTIVATOR_EXEC, "sync"] + options) - -elif main_cmd == "pushas" and len(options) == 2: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([ACTIVATOR_EXEC, "syncas"] + options) - -elif main_cmd == "show" and options: - _exec_args([REAGENT_EXEC, "query", "match"] + options) - -elif main_cmd == "search" and options: - _exec_args([REAGENT_EXEC, "query", "search"] + options) - -elif main_cmd == "mv" and len(options) > 2: - from_repo = options.pop(0) - to_repo = options.pop(0) - _exec_args([REAGENT_EXEC, "repo", "move", from_repo, to_repo] + options) - -elif main_cmd == "cp" and len(options) > 2: - avail_repos = _get_available_repositories() - from_repo = options.pop(0) - to_repo = options.pop(0) - if (from_repo in avail_repos) and (to_repo in avail_repos): - _exec_args([REAGENT_EXEC, "repo", "copy", from_repo, to_repo] + options) - -elif main_cmd == "deps" and options: - server = None - repository_id = None - try: - server = get_entropy_server(quiet = True) - # get current repository id - repository_id = server.repository() - finally: - if server is not None: - server.shutdown() - - _exec_args([REAGENT_EXEC, "repo", "package-dep", repository_id] + options) - -elif main_cmd == "depsin" and len(options) > 1: - avail_repos = _get_available_repositories() - repository_id = options.pop(0) - if repository_id in avail_repos: - _exec_args([REAGENT_EXEC, "repo", "package-dep", repository_id] + options) - -elif main_cmd == "rm" and options: - _exec_args([REAGENT_EXEC, "repo", "remove"] + options) - -elif main_cmd == "rmfrom" and options and len(options) > 1: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - _exec_args([REAGENT_EXEC, "repo", "remove"] + options) - -elif main_cmd == "repo": - server = None - try: - server = get_entropy_server(quiet = True) - repository_id = server.repository() - repository_ids = server.repositories() - for repo_id in sorted(repository_ids): - if repo_id == repository_id: - print_warning(purple(repo_id) + " *") - else: - print_info(teal(repo_id)) - raise SystemExit(0) - finally: - if server is not None: - server.shutdown() - -elif main_cmd == "reset": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - - server = None - try: - server = get_entropy_server() - rev_path = server._get_local_repository_revision_file( - server.repository()) - try: - with open(rev_path, "w") as rev_f: - rev_f.write("0\n") - except (IOError, OSError) as err: - print_error("%s: %s" % (_("reset error"), err)) - raise SystemExit(1) - finally: - if server is not None: - server.shutdown() - - _exec_args([ACTIVATOR_EXEC, "repo", "sync"]) - -elif main_cmd == "log": - if options: - avail_repos = _get_available_repositories() - if options[0] in avail_repos: - os.environ['ETP_REPO'] = options.pop(0) - - server = None - try: - server = get_entropy_server() - changelog_path = server._get_local_repository_compressed_changelog_file( - server.repository()) - if os.path.isfile(changelog_path) and os.access(changelog_path, os.R_OK): - proc = subprocess.Popen( - "/bin/bzcat \"%s\" | ${PAGER:-/usr/bin/less}" % ( - changelog_path,), shell = True) - raise SystemExit(proc.wait()) - else: - print_error("log is not available") - raise SystemExit(1) - finally: - if server is not None: - server.shutdown() - -else: - print_menu(help_opts) - print_error("wrong parameters") - raise SystemExit(1) diff --git a/server/eit.py b/server/eit.py new file mode 100755 index 000000000..846b1c533 --- /dev/null +++ b/server/eit.py @@ -0,0 +1,14 @@ +#!/usr/bin/python2 +import sys + +# Entropy imports +sys.path.insert(0, "/usr/lib/entropy/libraries") +sys.path.insert(0, "/usr/lib/entropy/client") +sys.path.insert(0, "/usr/lib/entropy/server") +sys.path.insert(0, "../libraries") +sys.path.insert(0, "../server") +sys.path.insert(0, "../client") + +from eit.main import main +sys.argv[0] = "eit" +main() diff --git a/server/eit/__init__.py b/server/eit/__init__.py new file mode 100644 index 000000000..b0e064f6f --- /dev/null +++ b/server/eit/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" diff --git a/server/eit/commands/__init__.py b/server/eit/commands/__init__.py new file mode 100644 index 000000000..b0e064f6f --- /dev/null +++ b/server/eit/commands/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py new file mode 100644 index 000000000..29d07dbb2 --- /dev/null +++ b/server/eit/commands/command.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +from entropy.const import etpConst +from entropy.server.interfaces import Server +from entropy.core.settings.base import SystemSettings + +class EitCommand(object): + """ + Base class for Eit commands + """ + + # Set this to the command name from where this object + # gets triggered (for eit help, "help" is the NAME + # that should be set). + NAME = None + + def __init__(self, args): + self._args = args + + def parse(self): + """ + Parse the actual arguments and return + the function that should be called and + its arguments. The function signature is: + int function([list of args]) + The return value represents the exit status + of the "command" + """ + raise NotImplementedError() + + def _entropy(self, *args, **kwargs): + """ + Return the Entropy Server object. + This method is not thread safe. + """ + if "community_repo" not in kwargs: + kwargs["community_repo"] = etpConst['community']['mode'] + return Server(*args, **kwargs) + + def _settings(self): + """ + Return a SystemSettings instance. + """ + return SystemSettings() diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py new file mode 100644 index 000000000..4149e6527 --- /dev/null +++ b/server/eit/commands/commit.py @@ -0,0 +1,368 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.const import etpConst +from entropy.i18n import _ +from entropy.exceptions import PermissionDenied +from entropy.output import print_info, print_warning, print_error, \ + darkgreen, teal, brown, darkred, bold, purple, blue, red, green + +from text_tools import print_table + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitCommit(EitCommand): + """ + Main Eit commit command. + """ + + NAME = "commit" + + def __init__(self, args): + EitCommand.__init__(self, args) + # ask user before any critical operation + self._ask = True + # interactively ask for packages to be staged, etc + self._interactive = False + # list of package dependencies to re-package, if any + self._repackage = [] + # execute actions only for given atoms, if any + self._atoms = [] + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitCommit.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitCommit.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help="repository id") + parser.add_argument("--interactive", action="store_true", + default=False, + help=_("selectively pick changes")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + print_error("error: %s" % (err.strerror,)) + return parser.print_help, [] + + self._interactive = nsargs.interactive + if not self._interactive: + self._ask = not nsargs.quick + + return self._commit, [nsargs.repo] + + def _commit(self, repo): + """ + Commit command body. + """ + server = None + acquired = False + try: + try: + server = self._entropy(default_repository=repo) + except PermissionDenied as err: + print_error(err.value) + return 1 + acquired = entropy.tools.acquire_entropy_locks(server) + if not acquired: + print_error( + darkgreen(_("Another Entropy is currently running.")) + ) + return 1 + return self.__commit(server) + finally: + if server is not None: + if acquired: + entropy.tools.release_entropy_locks(server) + server.shutdown() + + def __commit(self, entropy_server): + to_be_added = set() + to_be_removed = set() + to_be_injected = set() + + key_sorter = lambda x: \ + entropy_server.open_repository(x[1]).retrieveAtom(x[0]) + repository_id = entropy_server.repository() + generated_packages = [] + + if self._repackage: + + packages = [] + dbconn = entropy_server.open_server_repository( + repository_id, read_only = True, + no_upload = True) + + spm = entropy_server.Spm() + for item in self._repackage: + match = dbconn.atomMatch(item) + if match[0] == -1: + print_warning(darkred(" !!! ") + \ + red(_("Cannot match"))+" "+bold(item)) + else: + cat = dbconn.retrieveCategory(match[0]) + name = dbconn.retrieveName(match[0]) + version = dbconn.retrieveVersion(match[0]) + spm_pkg = os.path.join(cat, name + "-" + version) + spm_build = \ + spm.get_installed_package_build_script_path( + spm_pkg) + spm_pkg_dir = os.path.dirname(spm_build) + if os.path.isdir(spm_pkg_dir): + packages.append((spm_pkg, 0)) + + if packages: + to_be_added |= set(packages) + else: + print_info(brown(" * ") + \ + red(_("No valid packages to repackage."))) + + # normal scanning + print_info(brown(" * ") + \ + red("%s..." % (_("Scanning database for differences"),) )) + try: + myadded, to_be_removed, to_be_injected = \ + entropy_server.scan_package_changes() + except KeyboardInterrupt: + return 1 + to_be_added |= myadded + + if self._atoms: + to_be_removed.clear() + to_be_injected.clear() + tba = dict(((x[0], x,) for x in to_be_added)) + tb_added_new = set() + for myatom in self._atoms: + if myatom in tba: + tb_added_new.add(tba.get(myatom)) + continue + try: + inst_myatom = entropy_server.Spm( + ).match_installed_package(myatom) + except KeyError: + print_warning(darkred(" !!! ") + \ + red(_("Invalid package")) + " " + bold(myatom)) + continue + if inst_myatom in tba: + tb_added_new.add(tba.get(inst_myatom)) + to_be_added = tb_added_new + + if not (len(to_be_removed)+len(to_be_added)+len(to_be_injected)): + print_info(brown(" * ") + \ + red("%s." % (_("Zarro thinggz totoo"),))) + return 0 + + if to_be_injected: + print_info(brown(" @@ ") + \ + blue("%s:" % ( + _("These would be marked as injected"),) )) + for idpackage, repoid in sorted(to_be_injected, + key = key_sorter): + dbconn = entropy_server.open_server_repository(repoid, + read_only = True, no_upload = True) + atom = dbconn.retrieveAtom(idpackage) + print_info(brown(" # ") + "["+blue(repoid) + "] " + \ + red(atom)) + if self._ask: + rc = entropy_server.ask_question( + ">> %s" % (_("Do it now ?"),)) + else: + rc = _("Yes") + + if rc == _("Yes"): + for idpackage, repoid in sorted(to_be_injected, + key = key_sorter): + dbconn = entropy_server.open_server_repository(repoid, + read_only = True, no_upload = True) + atom = dbconn.retrieveAtom(idpackage) + print_info(brown(" <> ") + \ + blue("%s: " % (_("Transforming"),) )+red(atom)) + entropy_server._transform_package_into_injected( + idpackage, repoid) + print_info(brown(" @@ ") + \ + blue("%s." % (_("Transform complete"),) )) + + def show_rm(idpackage, repoid): + dbconn = entropy_server.open_server_repository(repoid, + read_only = True, no_upload = True) + atom = dbconn.retrieveAtom(idpackage) + exp_string = '' + pkg_expired = entropy_server._is_match_expired( + (idpackage, repoid,)) + if pkg_expired: + exp_string = "|%s" % (purple(_("expired")),) + print_info(brown(" # ") + "["+blue(repoid) + \ + exp_string + "] " + red(atom)) + + if self._interactive and to_be_removed: + print_info(brown(" @@ ") + \ + blue(_("What packages do you want to remove ?"))) + new_to_be_removed = set() + for idpackage, repoid in sorted(to_be_removed, + key = key_sorter): + show_rm(idpackage, repoid) + rc = entropy_server.ask_question( + ">> %s" % (_("Remove this package?"),)) + if rc == _("Yes"): + new_to_be_removed.add((idpackage, repoid,)) + to_be_removed = new_to_be_removed + + if to_be_removed: + + print_info(brown(" @@ ") + blue("%s:" % ( + _("These would be removed from repository"),) )) + for idpackage, repoid in sorted(to_be_removed, + key = key_sorter): + show_rm(idpackage, repoid) + + if self._ask: + rc = entropy_server.ask_question( + ">> %s" % ( + _("Would you like to remove them now ?"),) ) + else: + rc = _("Yes") + + if rc == _("Yes"): + remdata = {} + for idpackage, repoid in to_be_removed: + if repoid not in remdata: + remdata[repoid] = set() + remdata[repoid].add(idpackage) + for repoid in remdata: + entropy_server.remove_packages(repoid, + remdata[repoid]) + + if self._interactive and to_be_added: + print_info(brown(" @@ ") + \ + blue(_("What packages do you want to add ?"))) + new_to_be_added = set() + for tb_atom, tb_counter in sorted(to_be_added, + key = lambda x: x[0]): + print_info(brown(" # ") + red(tb_atom)) + rc = entropy_server.ask_question( + ">> %s" % (_("Add this package?"),)) + if rc == _("Yes"): + new_to_be_added.add((tb_atom, tb_counter,)) + to_be_added = new_to_be_added + + if to_be_added: + + print_info(brown(" @@ ") + \ + blue("%s:" % ( + _("These would be added or updated"),) )) + items = sorted([x[0] for x in to_be_added]) + for item in items: + item_txt = purple(item) + + # this is a spm atom + spm_key = entropy.dep.dep_getkey(item) + try: + spm_slot = entropy_server.Spm( + ).get_installed_package_metadata(item, "SLOT") + spm_repo = entropy_server.Spm( + ).get_installed_package_metadata( + item, "repository") + except KeyError: + spm_slot = None + spm_repo = None + + # + # inform user about SPM repository sources moves !! + # + etp_repo = None + if spm_repo is not None: + pkg_id, repo_id = entropy_server.atom_match(spm_key, + match_slot = spm_slot) + if repo_id != 1: + repo_db = entropy_server.open_server_repository( + repo_id, just_reading = True) + etp_repo = repo_db.retrieveSpmRepository(pkg_id) + + if (etp_repo is not None) and \ + (etp_repo != spm_repo): + item_txt += ' [%s {%s=>%s}]' % ( + bold(_("warning")), + darkgreen(etp_repo), blue(spm_repo),) + + print_info(brown(" # ") + item_txt) + + if self._ask: + rc = entropy_server.ask_question(">> %s (%s %s)" % ( + _("Would you like to package them now ?"), + _("inside"), + repository_id, + ) + ) + if rc == _("No"): + return 0 + + problems = entropy_server._check_config_file_updates() + if problems: + return 1 + + # package them + print_info(brown(" @@ ") + \ + blue("%s..." % (_("Compressing packages"),) )) + store_dir = entropy_server._get_local_store_directory( + repository_id) + for x in sorted(to_be_added): + print_info(brown(" # ") + teal(x[0])) + try: + pkg_list = entropy_server.Spm().generate_package(x[0], + store_dir) + generated_packages.append(pkg_list) + except OSError: + entropy.tools.print_traceback() + print_info(brown(" !!! ")+bold("%s..." % ( + _("Ignoring broken Spm entry, please recompile it"),) ) + ) + + if not generated_packages: + print_info(brown(" * ")+red(_("Nothing to do, check later."))) + # then exit gracefully + return 0 + + etp_pkg_files = [(pkg_list, False) for pkg_list in \ + generated_packages] + idpackages = entropy_server.add_packages_to_repository( + repository_id, etp_pkg_files) + + if idpackages: + # checking dependencies and print issues + entropy_server.extended_dependencies_test([repository_id]) + entropy_server.close_repositories() + print_info(green(" * ") + red("%s: " % (_("Statistics"),) ) + \ + blue("%s: " % (_("Entries handled"),) ) + \ + bold(str(len(idpackages)))) + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitCommit, + EitCommit.NAME, + _("commit changes to repository")) + ) diff --git a/server/eit/commands/descriptor.py b/server/eit/commands/descriptor.py new file mode 100644 index 000000000..3c3744fdc --- /dev/null +++ b/server/eit/commands/descriptor.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + Eit Command descriptor class. + +""" + +class EitCommandDescriptor(object): + """ + EitCommand descriptor object used for + help information purposes. + """ + + EIT_COMMANDS = [] + EIT_COMMANDS_MAP = {} + + @staticmethod + def register(descriptor): + """ + Register an EitCommandDescriptor object + """ + EitCommandDescriptor.EIT_COMMANDS.append(descriptor) + EitCommandDescriptor.EIT_COMMANDS_MAP[descriptor.get_name()] = \ + descriptor + + @staticmethod + def obtain(): + """ + Get the list of registered EitCommandDescriptor object + """ + return EitCommandDescriptor.EIT_COMMANDS[:] + + @staticmethod + def obtain_descriptor(name): + """ + Get a registered EitCommandDescritor object + through its name. + + @param name: name of the EitCommandDescriptor + @type name: string + @raise KeyError: if name isn't bound to any + EitCommandDescriptor object. + """ + return EitCommandDescriptor.EIT_COMMANDS_MAP[name] + + def __init__(self, klass, name, description): + self._klass = klass + self._name = name + self._description = description + + def get_class(self): + """ + Get EitCommand class bound to this command + """ + return self._klass + + def get_name(self): + """ + Get EitCommand name + """ + return self._name + + def get_description(self): + """ + Get EitCommand description + """ + return self._description diff --git a/server/eit/commands/help.py b/server/eit/commands/help.py new file mode 100644 index 000000000..2c8522a86 --- /dev/null +++ b/server/eit/commands/help.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import argparse + +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + +class EitHelp(EitCommand): + """ + Main Eit help command. + """ + + NAME = "help" + + def parse(self): + """ + Parse help command + """ + return self._show_help, [] + + def _show_help(self, *args): + parser = argparse.ArgumentParser( + description=_("Entropy Infrastructure Toolkit"), + epilog="http://www.sabayon.org", + formatter_class=argparse.RawDescriptionHelpFormatter) + + descriptors = EitCommandDescriptor.obtain() + descriptors.sort(key = lambda x: x.get_name()) + group = parser.add_argument_group("command", "available commands") + for descriptor in descriptors: + group.add_argument(descriptor.get_name(), + help=descriptor.get_description(), + action="store_true") + parser.print_help() + if not self._args: + return 1 + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitHelp, + EitHelp.NAME, + _("this help")) + ) diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py new file mode 100644 index 000000000..44ab7812c --- /dev/null +++ b/server/eit/commands/status.py @@ -0,0 +1,179 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.const import etpConst +from entropy.i18n import _ +from entropy.exceptions import PermissionDenied +from entropy.output import print_info, print_error, darkgreen, \ + teal, brown, darkred, bold, purple, blue + +from text_tools import print_table + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitStatus(EitCommand): + """ + Main Eit status command. + """ + + NAME = "status" + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitStatus.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitStatus.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help="repository id") + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + print_error("error: %s" % (err.strerror,)) + return parser.print_help, [] + + return self._status, [nsargs.repo] + + def _status(self, repo): + """ + Status command body. + """ + server = None + acquired = False + try: + try: + server = self._entropy(default_repository=repo) + except PermissionDenied as err: + print_error(err.value) + return 1 + acquired = entropy.tools.acquire_entropy_locks(server) + if not acquired: + print_error( + darkgreen(_("Another Entropy is currently running.")) + ) + return 1 + return self.__status(server) + finally: + if server is not None: + if acquired: + entropy.tools.release_entropy_locks(server) + server.shutdown() + + def __status(self, entropy_server): + plugin_id = etpConst['system_settings_plugins_ids']['server_plugin'] + repos_data = self._settings()[plugin_id]['server']['repositories'] + repo_id = entropy_server.repository() + + repo_data = repos_data[repo_id] + repo_rev = entropy_server.local_repository_revision(repo_id) + store_dir = entropy_server._get_local_store_directory(repo_id) + upload_basedir = entropy_server._get_local_upload_directory(repo_id) + upload_files, upload_packages = \ + entropy_server.Mirrors._calculate_local_upload_files(repo_id) + key_sorter = lambda x: \ + entropy_server.open_repository(x[1]).retrieveAtom(x[0]) + + to_be_added, to_be_removed, to_be_injected = \ + entropy_server.scan_package_changes() + + to_be_added = [x[0] for x in to_be_added] + to_be_added.sort() + + toc = [] + + toc.append("[%s] %s" % (purple(repo_id), + brown(repo_data['description']),)) + toc.append((" %s:" % (blue(_("local revision")),), + str(repo_rev),)) + + store_pkgs = [] + if os.path.isdir(store_dir): + store_pkgs = os.listdir(store_dir) + + toc.append((" %s:" % (darkgreen(_("stored packages")),), + str(len(store_pkgs)),)) + for pkg_rel in sorted(store_pkgs): + toc.append((" ", brown(pkg_rel))) + + toc.append((" %s:" % (darkgreen(_("upload packages")),), + str(upload_files),)) + for pkg_rel in sorted(upload_packages): + toc.append((" ", brown(pkg_rel))) + + unstaged_len = len(to_be_added) + len(to_be_removed) + \ + len(to_be_injected) + toc.append((" %s:" % (darkgreen(_("unstaged packages")),), + str(unstaged_len),)) + + print_table(toc) + del toc[:] + print_info("") + + def _get_spm_slot_repo(pkg_atom): + try: + spm_slot = entropy_server.Spm( + ).get_installed_package_metadata(pkg_atom, "SLOT") + spm_repo = entropy_server.Spm( + ).get_installed_package_metadata(pkg_atom, + "repository") + except KeyError: + spm_repo = None + spm_slot = None + return spm_slot, spm_repo + + for pkg_atom in to_be_added: + spm_slot, spm_repo = _get_spm_slot_repo(pkg_atom) + + pkg_str = teal(pkg_atom) + if spm_repo is not None: + pkg_id, repo_id = entropy_server.atom_match(pkg_atom, + match_slot = spm_slot) + if pkg_id != -1: + etp_repo = entropy_server.open_repository( + repo_id).retrieveSpmRepository(pkg_id) + if etp_repo != spm_repo: + pkg_str += " [%s=>%s]" % ( + etp_repo, spm_repo,) + toc.append((" %s:" % (purple(_("add")),), teal(pkg_str))) + + for package_id, repo_id in sorted(to_be_removed, key = key_sorter): + pkg_atom = entropy_server.open_repository(repo_id + ).retrieveAtom(package_id) + toc.append((" %s:" % (darkred(_("remove")),), + brown(pkg_atom))) + + for package_id, repo_id in sorted(to_be_injected, + key = key_sorter): + pkg_atom = entropy_server.open_repository(repo_id + ).retrieveAtom( package_id) + toc.append((" %s:" % (bold(_("switch injected")),), + darkgreen(pkg_atom))) + + print_table(toc) + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitStatus, + EitStatus.NAME, + _("show repository status")) + ) diff --git a/server/eit/main.py b/server/eit/main.py new file mode 100644 index 000000000..5c6c26bd3 --- /dev/null +++ b/server/eit/main.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import os +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import print_error +import entropy.tools + +from eit.commands.status import EitStatus +from eit.commands.help import EitHelp +from eit.commands.commit import EitCommit + + +def handle_exception(exc_class, exc_instance, exc_tb): + + # restore original exception handler, to avoid loops + uninstall_exception_handler() + entropy.tools.kill_threads() + + if exc_class is KeyboardInterrupt: + raise SystemExit(1) + + # always slap exception data (including stack content) + entropy.tools.print_exception(tb_data = exc_tb) + + raise exc_instance + +def install_exception_handler(): + sys.excepthook = handle_exception + +def uninstall_exception_handler(): + sys.excepthook = sys.__excepthook__ + +def main(): + + install_exception_handler() + + args_map = { + EitHelp.NAME: EitHelp, + "-h": EitHelp, + "--help": EitHelp, + EitStatus.NAME: EitStatus, + EitCommit.NAME: EitCommit, + } + + args = sys.argv[1:] + cmd = None + if args: + cmd = args[0] + args = args[1:] + cmd_class = args_map.get(cmd) + + if cmd_class is None: + cmd_class = args_map.get(EitHelp.NAME) + + # non-root users not allowed + allowed = True + if os.getuid() != 0 and \ + cmd_class is not EitHelp: + cmd_class = EitHelp + allowed = False + + cmd_obj = cmd_class(args) + func, func_args = cmd_obj.parse() + exit_st = func(*func_args) + if allowed: + raise SystemExit(exit_st) + else: + print_error(_("superuser access required")) + raise SystemExit(1) + From cad69e0625f38113ec4c5c3c46981efb8e523cca Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 Oct 2011 17:11:57 +0200 Subject: [PATCH 04/99] [po] update translations --- misc/po/Makefile | 2 +- misc/po/POTFILES.in | 9 +- misc/po/ca.po | 617 ++++++++++++++++++++++++------------------- misc/po/da.po | 622 +++++++++++++++++++++++-------------------- misc/po/de.po | 625 +++++++++++++++++++++++-------------------- misc/po/entropy.pot | 596 ++++++++++++++++++++++------------------- misc/po/es.po | 625 +++++++++++++++++++++++-------------------- misc/po/fr.po | 622 +++++++++++++++++++++++-------------------- misc/po/fr_CA.po | 622 +++++++++++++++++++++++-------------------- misc/po/it.po | 625 +++++++++++++++++++++++-------------------- misc/po/nl.po | 623 +++++++++++++++++++++++-------------------- misc/po/pl.po | 622 +++++++++++++++++++++++-------------------- misc/po/pt.po | 621 +++++++++++++++++++++++-------------------- misc/po/ru.po | 622 +++++++++++++++++++++++-------------------- misc/po/sk.po | 614 +++++++++++++++++++++++-------------------- misc/po/sv.po | 613 +++++++++++++++++++++++-------------------- misc/po/uk.po | 626 ++++++++++++++++++++++++-------------------- 17 files changed, 5103 insertions(+), 4203 deletions(-) diff --git a/misc/po/Makefile b/misc/po/Makefile index 9da093c1b..2a12a8553 100644 --- a/misc/po/Makefile +++ b/misc/po/Makefile @@ -9,7 +9,7 @@ NLSPACKAGE = entropy CATALOGS = $(shell ls *.po) FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS)) GLADEFILES = $(wildcard ../../sulfur/src/sulfur/*.glade) $(wildcard ../../magneto/src/magneto/gtk/*.glade) -PYFILES = $(wildcard ../../libraries/entropy/transceivers/uri_handlers/*.py) $(wildcard ../../libraries/entropy/transceivers/uri_handlers/plugins/*.py) $(wildcard ../../libraries/entropy/transceivers/*.py) $(wildcard ../../libraries/entropy/db/*.py) $(wildcard ../../libraries/entropy/core/*.py) $(wildcard ../../libraries/entropy/core/settings/*.py) $(wildcard ../../libraries/entropy/core/settings/plugins/*.py) $(wildcard ../../libraries/entropy/core/settings/plugins/interfaces/*.py) $(wildcard ../../libraries/entropy/spm/*.py) $(wildcard ../../libraries/entropy/spm/plugins/*.py) $(wildcard ../../libraries/entropy/spm/plugins/portage_plugin/*.py) $(wildcard ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/*.py) $(wildcard ../../libraries/entropy/spm/plugins/interfaces/*.py) $(wildcard ../../libraries/entropy/services/system/*.py) $(wildcard ../../libraries/entropy/services/ugc/*.py) $(wildcard ../../libraries/entropy/services/repository/*.py) $(wildcard ../../libraries/entropy/services/*.py) $(wildcard ../../libraries/entropy/server/*.py) $(wildcard ../../libraries/entropy/server/interfaces/*.py) $(wildcard ../../libraries/entropy/client/services/ugc/*.py) $(wildcard ../../libraries/entropy/client/services/system/*.py) $(wildcard ../../libraries/entropy/client/services/*.py) $(wildcard ../../libraries/entropy/client/*.py) $(wildcard ../../libraries/entropy/client/interfaces/*.py) $(wildcard ../../libraries/entropy/*.py) $(wildcard ../../client/*.py) $(wildcard ../../server/*.py) $(wildcard ../../sulfur/src/*.py) $(wildcard ../../sulfur/src/sulfur/*.py) $(wildcard ../../magneto/src/magneto/kde/*.py) $(wildcard ../../magneto/src/magneto/gtk/*.py) $(wildcard ../../magneto/src/magneto/core/*.py) ../../services/kernel-switcher ../../server/eit +PYFILES = $(wildcard ../../libraries/entropy/transceivers/uri_handlers/*.py) $(wildcard ../../libraries/entropy/transceivers/uri_handlers/plugins/*.py) $(wildcard ../../libraries/entropy/transceivers/*.py) $(wildcard ../../libraries/entropy/db/*.py) $(wildcard ../../libraries/entropy/core/*.py) $(wildcard ../../libraries/entropy/core/settings/*.py) $(wildcard ../../libraries/entropy/core/settings/plugins/*.py) $(wildcard ../../libraries/entropy/core/settings/plugins/interfaces/*.py) $(wildcard ../../libraries/entropy/spm/*.py) $(wildcard ../../libraries/entropy/spm/plugins/*.py) $(wildcard ../../libraries/entropy/spm/plugins/portage_plugin/*.py) $(wildcard ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/*.py) $(wildcard ../../libraries/entropy/spm/plugins/interfaces/*.py) $(wildcard ../../libraries/entropy/services/system/*.py) $(wildcard ../../libraries/entropy/services/ugc/*.py) $(wildcard ../../libraries/entropy/services/repository/*.py) $(wildcard ../../libraries/entropy/services/*.py) $(wildcard ../../libraries/entropy/server/*.py) $(wildcard ../../libraries/entropy/server/interfaces/*.py) $(wildcard ../../libraries/entropy/client/services/ugc/*.py) $(wildcard ../../libraries/entropy/client/services/system/*.py) $(wildcard ../../libraries/entropy/client/services/*.py) $(wildcard ../../libraries/entropy/client/*.py) $(wildcard ../../libraries/entropy/client/interfaces/*.py) $(wildcard ../../libraries/entropy/*.py) $(wildcard ../../client/*.py) $(wildcard ../../server/*.py) $(wildcard ../../server/eit/*.py) $(wildcard ../../server/eit/commands/*.py) $(wildcard ../../sulfur/src/*.py) $(wildcard ../../sulfur/src/sulfur/*.py) $(wildcard ../../magneto/src/magneto/kde/*.py) $(wildcard ../../magneto/src/magneto/gtk/*.py) $(wildcard ../../magneto/src/magneto/core/*.py) ../../services/kernel-switcher POTFILES = $(PYFILES) $(GLADEFILES) all: $(NLSPACKAGE).pot $(FMTCATALOGS) diff --git a/misc/po/POTFILES.in b/misc/po/POTFILES.in index e96c6b3f3..ffb9e153e 100644 --- a/misc/po/POTFILES.in +++ b/misc/po/POTFILES.in @@ -82,6 +82,14 @@ ../server/eit.py ../server/server_reagent.py ../server/server_query.py +../server/eit/__init__.py +../server/eit/main.py +../server/eit/commands/status.py +../server/eit/commands/command.py +../server/eit/commands/help.py +../server/eit/commands/__init__.py +../server/eit/commands/commit.py +../server/eit/commands/descriptor.py ../sulfur/src/sulfur_client.py ../sulfur/src/sulfur/views.py ../sulfur/src/sulfur/packages.py @@ -106,6 +114,5 @@ ../magneto/src/magneto/core/__init__.py ../magneto/src/magneto/core/config.py ../services/kernel-switcher -../server/eit ../sulfur/src/sulfur/sulfur.glade ../magneto/src/magneto/gtk/magneto.glade diff --git a/misc/po/ca.po b/misc/po/ca.po index 7617d44d6..bba9485d7 100644 --- a/misc/po/ca.po +++ b/misc/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-02-27 20:35+0100\n" "Last-Translator: Roger Calvó \n" "Language-Team: Catalan \n" @@ -18,36 +18,36 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "S'està sincronitzant la base de dades actual" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espereu" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "S'està eliminant l'entrada" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "S'està afegint l'entrada" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "S'està exportant la taula de la base de dades" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "L'exportació de la base de dades ha acabat." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,70 +56,70 @@ msgstr "L'exportació de la base de dades ha acabat." msgid "ATTENTION" msgstr "ATENCIÓ" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "Hi ha hagut un error Spm" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "No s'ha trobat un Identificador Únic Spm per a " -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "" "s'està actualitzant la disposició de metadades del repositori, espereu!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "s'estan generant les metadades de provided_libs, espereu!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "s'està forçant l'actualització de les metadades dels paquets" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "pot trigar una estona" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "acció" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "s'ha desplaçat el paquet" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "AVÍS" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "No es pot executar la neteja SPM, error" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "s'han desplaçat els paquets correctament" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "S'està movent una entrada antiga" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "a" @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "No es pot actualitzar el fitxer SPM de paquets instal·lats" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -439,7 +439,7 @@ msgid "Error calculating dependencies" msgstr "Error en calcular les dependències" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "no està implementada" @@ -592,8 +592,8 @@ msgstr "s'està baixant el paquet" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "paquet" @@ -662,8 +662,8 @@ msgstr "càrrega" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "baixada" @@ -673,9 +673,10 @@ msgstr "copia" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "elimina" @@ -747,7 +748,7 @@ msgid "sync" msgstr "sincronitza" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "l'eliminació ha acabat" @@ -764,7 +765,7 @@ msgstr "errors de càrrega" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "raó" @@ -773,12 +774,12 @@ msgid "upload completed successfully" msgstr "s'ha penjat correctament" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "errors de baixada" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "la baixada s'ha acabat correctament" @@ -826,12 +827,12 @@ msgstr "Voleu executar els passos descrits més amunt?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -848,7 +849,8 @@ msgstr "Voleu executar els passos descrits més amunt?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" @@ -891,10 +893,10 @@ msgstr "aquests són els paquets que han vençut" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -914,8 +916,8 @@ msgstr "s'estan eliminat els paquets localment" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "eliminat" @@ -952,7 +954,7 @@ msgid "notice board upload success" msgstr "el tauler de notícies s'ha carregat" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "Les claus del repositori han vençut" @@ -1120,30 +1122,26 @@ msgstr "El repositori s'ha actualitzat igualment" msgid "package has no keyword set, it will be masked !" msgstr "el paquet no té assignada keyword, s'emmascararà !" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Heu d'executar la Interfície del Servidor d'Entropy com a root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "el repositori no està configurat" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "la id del repositori està protegida, no podeu usar-la..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "la revisió del repositori no és vàlida" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "s'estableix per defecte a 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1156,84 +1154,84 @@ msgstr "s'estableix per defecte a 0" msgid "repository" msgstr "repositori" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "s'estan sincronitzant els conjunts de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "no pot coincidir" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 msgid "initializing repository" msgstr "S'està inicialitzant el repositori" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "segur que voleu inicialitzar aquest respositori?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "L'etiqueta especificada no és vàlida" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "s'estan eliminant els paquets seleccionats de les branques" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "no hi ha res per fer" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "aquests són els paquets que s'eliminaran" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "s'està comprovant l'empremta electrònica del paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "l'empremta no coincideix per" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "md5 és incorrecte" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "error en baixar els paquets de les rèpliques" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "s'està treballant en la branca" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "s'està actualitzant un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "paquet eliminat" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "No es pot accedir al repositori del sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "S'està preparant per desplaçar els paquets seleccionats a" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "S'està preparant per copiar els paquets seleccionats a" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1241,415 +1239,415 @@ msgstr "" "tots els paquets antics amb scope en conflicte s'eliminaran del repositori " "destí, a menys que s'injectin" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nova etiqueta" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "dependències inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "dependències" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "s'està commutant" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "no es pot commutar, el paquet no s'ha trobat, s'omet" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "S'està desplaçant el fitxer" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "s'estan carregant dades del respositori d'origen" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "la clau GPG estava disponible en" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "s'estan injectant dades al respositori destinació" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "s'està eliminant l'entrada del respositori origen" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "l'àtom s'ha tractat correctament" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "S'estan injectant metadades d'Entropy als paquets construïts" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "No s'ha pogut carregar la infraestructura JFYI, GPG" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "s'estan injectant metadades d'Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "la injecció ha acabat" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "s'està eliminant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Verificació d'integritat dels paquets seleccionats" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Es comprovaran tots els paquets del repositori." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Aquesta és la llista de paquets que es comprovaran" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "S'està treballant en la rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "s'està comprovant l'empremta electrònica" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "verificació de l'empremta electrònica de" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NO és sa" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Aquesta és la llista de paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Estadístiques" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Número de paquets comprovats" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Número de paquets sans" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Número de paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "s'està comprovant l'estat de" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "està malmès, s'ha desat la suma de verificació" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "paquets comprovats" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "paquets sans" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "paquets baixats" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "baixades fallides" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "GPG està signant paquets del repositori" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Tots els paquets perduts del repositori es baixaran." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG no està disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "No hi ha claus disponibles per a" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "s'està signant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Error desconegut en signar el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "paquets signats" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "pujat/ignorat" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "S'estan començant a baixar els fitxers necessaris" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "S'estan cercant fitxers necessaris o trencats en una altra rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Els paquets binaris s'han baixat correctament." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Aquests paquets no es troben en línia" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "No es comprovaran" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Configureu la branca a" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "i torneu a intentar-ho" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "S'està copiant el repositori (si no existeix)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "S'estan commutant paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "S'està ignorant" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "ja a la branca" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "s'ha acabat el bucle de migració" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "S'està executant la verificació de paquets orfes SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "S'està escanejant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "no se n'ha trobat cap més" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Cadena de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "S'està comprovant" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "S'està executant la verificació de dependències" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Aquestes són les dependències que no s'han trobat" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Necessàries per" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "pel repositori" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "S'han satisfet totes les dependències. Tot és correcte." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Llista de paquets trencats i coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "S'estan abocant els resultats en aquests fitxers" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Es sistema està sa" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "S'estan cercant llibreries coincidents amb Spm, espereu" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Aquests són els paquets coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "No hi ha paquets coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "El repositori predeterminat no està inicialitzat" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Voleu inicialitzar el repositori predeterminat?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Es continua amb un repositori no inicialitzat" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "Ja teníeu bloquejat el repositori d'Entropy :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "S'està bloquejant i sincronitzant el repositori d'Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Taula d'estat de les rèpliques" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Desbloquejat" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Bloquejat" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "no es pot bloquejar la rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 msgid "Repository is corrupted!" msgstr "El repositori està malmès!" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "s'està indexant el respositori" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "s'està inicialitzant un repositori buit" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "Fitxer de repositori Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "s'ha inicialitzat correctament" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "s'està afegint un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "s'ha afegit un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "revisió" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "dependències manuals per a" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Aquestes són les dependències que no s'han trobat" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "No s'han trobat dependències perdudes." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "N'esteu segur?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1659,6 +1657,12 @@ msgstr "N'esteu segur?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1666,141 +1670,141 @@ msgstr "N'esteu segur?" msgid "Yes" msgstr "Sí" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "S'ha produït una excepció, es tanquen les tasques" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "repositori del servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "repositori de la comunitat" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Interfície d'Instàncies del Servidor d'Entropy del repositori" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "branca actual" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "tipus" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Repositoris configurats" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "la clau GPG ha vençut" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "arregleu-ho sisplau" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "S'ha produït un error GPG inesperat" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "s'omet" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "fitxers de configuració" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "s'està comprovant el sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "hi ha fitxers de configuració pendents d'actualitzar" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "hi ha dep_rewrites per aquest paquet" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "afegit" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "reemplaçat" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "No s'han reescrit dependències per" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "conjunts" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "s'estan actualitzant conjunts de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "s'està afegint un conjunt de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "s'està eliminant el conjunt de paquets" @@ -2338,7 +2342,8 @@ msgstr "S'està configurant" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "S'està executant una altra instància d'Entropy." @@ -6454,6 +6459,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Voleu calcular les dependències?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Els voleu eliminar ara?" @@ -6861,20 +6867,6 @@ msgstr "Data de creació" msgid "Expires on" msgstr "Expira el" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "mostra l'estat dels repositoris" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "repositori de paquets instal·lats" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "no s'ha especificat cap paquet." @@ -6917,7 +6909,7 @@ msgstr "No s'ha especificat cap repositori vàlid" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "No hi ha coincidents" @@ -7029,12 +7021,12 @@ msgstr "No es pot sobreescriure un fitxer que ja existeix" msgid "Bumping Repository database" msgstr "S'està identificant la base de dades del repositori" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "No hi ha paquets vàlids per empaquetar de nou." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "S'estan cercant diferències a la base de dades" @@ -7042,7 +7034,7 @@ msgstr "S'estan cercant diferències a la base de dades" msgid "Invalid atom" msgstr "Àtom no vàlid" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "No hi ha tasques pendents" @@ -7062,7 +7054,7 @@ msgstr "S'està transformant des de la base de dades" msgid "Database transform complete" msgstr "La transformació de base de dades ha acabat" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "vençut" @@ -7070,7 +7062,7 @@ msgstr "vençut" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Quins paquets voleu eliminar?" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Elimina aquest paquet?" @@ -7078,7 +7070,7 @@ msgstr "Elimina aquest paquet?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Quins paquets voleu afegir?" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Afegeix aquest paquet?" @@ -7086,58 +7078,58 @@ msgstr "Afegeix aquest paquet?" msgid "These are the packages that would be added/updated" msgstr "Aquests són els paquets que s'instal·laran/s'actualitzaran " -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "avís" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Els voleu empaquetar ara?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "a dins" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "S'estan comprimint paquets" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "S'ignora l'entrada trencada Spm, si us plau recompileu-la" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "No hi ha res per fer, comproveu-ho després." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Entrades gestionades" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "revisió local" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "paquets desats" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "paquets pujats" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "paquets signats" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "afegit" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "s'està commutant" @@ -7162,6 +7154,81 @@ msgstr "no s'ha trobat el conjunt de paquets" msgid "Nothing found" msgstr "No s'ha trobat res" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "mostra l'estat dels repositoris" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "aquesta ajuda" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "S'estan eliminat els paquets seleccionats" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "S'està instal·lant el paquet" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "s'ha injectat" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "S'està transformant des de la base de dades" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "La transformació de base de dades ha acabat" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Quins paquets voleu eliminar?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "S'eliminaran de la base de dades del sistema" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Quins paquets voleu afegir?" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "S'afegiran a la base de dades del sistema" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "repositori de paquets instal·lats" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8652,15 +8719,6 @@ msgstr "commuta el nucli" msgid "list kernels" msgstr "llista els nuclis" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "aquesta ajuda" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "error en el sòcol" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = sense límit; 100 = 100kB/s" @@ -9814,6 +9872,13 @@ msgstr "Notificador d'actualitzacions de l'aplicació Magneto" msgid "_Load Package Manager" msgstr "Carrega e_l gestor de paquets" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Heu d'executar la Interfície del Servidor d'Entropy com a root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "error en el sòcol" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "No es pot accedir al bloqueig de recursos d'Entropy." diff --git a/misc/po/da.po b/misc/po/da.po index e3770296f..912ed8faa 100644 --- a/misc/po/da.po +++ b/misc/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2006-02-14 14:52+0100\n" "Last-Translator: tim \n" "Language-Team: Danish \n" @@ -17,41 +17,41 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 #, fuzzy msgid "Syncing current database" msgstr "Kører Transaktion" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 #, fuzzy msgid "Removing entry" msgstr "Sletter" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 #, fuzzy msgid "Adding entry" msgstr "Sletter" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 #, fuzzy msgid "Exporting database table" msgstr "Kører Transaktion" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 #, fuzzy msgid "Database Export complete." msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -60,75 +60,75 @@ msgstr "Indlæsning afsluttet" msgid "ATTENTION" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Kilde" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "Pakker Til Opdatering" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 #, fuzzy msgid "action" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 #, fuzzy msgid "package move actions complete" msgstr "Indlæsning af pakker afsluttet" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 #, fuzzy msgid "package moves completed successfully" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 #, fuzzy msgid "Moving old entry" msgstr "Sletter" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "" @@ -402,7 +402,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -483,7 +483,7 @@ msgid "Error calculating dependencies" msgstr "Installer som afhængighed" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 #, fuzzy msgid "not supported" msgstr "Installeret" @@ -659,8 +659,8 @@ msgstr "Henter Pakker:" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 #, fuzzy msgid "package" msgstr "Pakker." @@ -740,8 +740,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 #, fuzzy msgid "download" msgstr "Størrelse af filer som skal hentes" @@ -752,9 +752,10 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 #, fuzzy msgid "remove" msgstr "Sletter" @@ -837,7 +838,7 @@ msgid "sync" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 #, fuzzy msgid "removal complete" msgstr "Indlæsning afsluttet" @@ -857,7 +858,7 @@ msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 #, fuzzy msgid "reason" msgstr "Filkilde" @@ -868,13 +869,13 @@ msgid "upload completed successfully" msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 #, fuzzy msgid "download errors" msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 #, fuzzy msgid "download completed successfully" msgstr "Indlæsning afsluttet" @@ -932,12 +933,12 @@ msgstr "Vis Installerede Pakker" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -954,7 +955,8 @@ msgstr "Vis Installerede Pakker" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" @@ -1004,10 +1006,10 @@ msgstr "Vis Installerede Pakker" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -1030,8 +1032,8 @@ msgstr "Vis Installerede Pakker" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "Sletter" @@ -1077,7 +1079,7 @@ msgid "notice board upload success" msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1271,32 +1273,28 @@ msgstr "Filkilder" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 #, fuzzy msgid "repository not configured" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1310,585 +1308,585 @@ msgstr "" msgid "repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 #, fuzzy msgid "cannot match" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 #, fuzzy msgid "Invalid tag specified" msgstr "Ingen valgte pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 #, fuzzy msgid "flushing back selected packages from branches" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 #, fuzzy msgid "nothing to do" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 #, fuzzy msgid "these are the packages that will be flushed" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 #, fuzzy msgid "checking package hash" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 #, fuzzy msgid "wrong md5" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 #, fuzzy msgid "error downloading packages from mirrors" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 #, fuzzy msgid "working on branch" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 #, fuzzy msgid "updating package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 #, fuzzy msgid "package flushed" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Ønsker du at forsættet ?" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 #, fuzzy msgid "Preparing to move selected packages to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 #, fuzzy msgid "Preparing to copy selected packages to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 #, fuzzy msgid "dependency" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 #, fuzzy msgid "switching" msgstr "Opdaterer" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 #, fuzzy msgid "moving file" msgstr "Forkert fil type (%s)" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 #, fuzzy msgid "Injecting entropy metadata into built packages" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 #, fuzzy msgid "injecting entropy metadata" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 #, fuzzy msgid "injection complete" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 #, fuzzy msgid "removing package" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 #, fuzzy msgid "Integrity verification of the selected packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 #, fuzzy msgid "All the packages in repository will be checked." msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 #, fuzzy msgid "This is the list of the packages that would be checked" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 #, fuzzy msgid "Working on mirror" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 #, fuzzy msgid "checking hash" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 #, fuzzy msgid "digest verification of" msgstr "_Beskrivelse" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 #, fuzzy msgid "This is the list of broken packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 #, fuzzy msgid "Mirror" msgstr "_Filspejlsliste" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 #, fuzzy msgid "Number of checked packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 #, fuzzy msgid "Number of healthy packages" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 #, fuzzy msgid "Number of broken packages" msgstr "Du er ved at slette %s pakker\n" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 #, fuzzy msgid "checking status of" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 #, fuzzy msgid "checked packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 #, fuzzy msgid "healthy packages" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 #, fuzzy msgid "broken packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 #, fuzzy msgid "downloaded packages" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 #, fuzzy msgid "failed downloads" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "Behander pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 #, fuzzy msgid "available" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 #, fuzzy msgid "Starting to download missing files" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 #, fuzzy msgid "Binary packages downloaded successfully." msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 #, fuzzy msgid "These are the packages that cannot be found online" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 #, fuzzy msgid "Please setup your branch to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 #, fuzzy msgid "and retry" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 #, fuzzy msgid "Switching packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 #, fuzzy msgid "Ignoring" msgstr "Installeret" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 #, fuzzy msgid "already in branch" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 #, fuzzy msgid "migration loop completed" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "Sletter som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 #, fuzzy msgid "Scanning package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 #, fuzzy msgid "not found anymore" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 #, fuzzy msgid "Packages string" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 #, fuzzy msgid "Checking" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 #, fuzzy msgid "Running dependencies test" msgstr "Sletter som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 #, fuzzy msgid "Needed by" msgstr "behøvet af %s" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 #, fuzzy msgid "by repo" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 #, fuzzy msgid "Broken and matched packages list" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 #, fuzzy msgid "These are the matched packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 #, fuzzy msgid "No matched packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 #, fuzzy msgid "Your default repository is not initialized" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 #, fuzzy msgid "Continuing with an uninitialized repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Filkilder" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Kører Transaktion" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 #, fuzzy msgid "adding package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 #, fuzzy msgid "added package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 #, fuzzy msgid "rev" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 #, fuzzy msgid "manual dependencies for" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 msgid "Do you agree?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1898,6 +1896,12 @@ msgstr "" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1905,156 +1909,156 @@ msgstr "" msgid "Yes" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Behandler metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 #, fuzzy msgid "Exception caught, closing tasks" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 #, fuzzy msgid "server-side repository" msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 #, fuzzy msgid "community repository" msgstr "Kilde" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 #, fuzzy msgid "current branch" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 #, fuzzy msgid "Currently configured repositories" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "Konfirmation af behandling af køen" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 #, fuzzy msgid "config files" msgstr "Oprettelse af %s profilen fejlede" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 #, fuzzy msgid "checking system" msgstr "Henter : %s" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 #, fuzzy msgid "there are configuration files not updated yet" msgstr "Oprettelse af %s profilen fejlede" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "Opdateret" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "Sorterer Pakker" @@ -2665,7 +2669,8 @@ msgstr "Oprettelse af %s profilen fejlede" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -7208,6 +7213,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Vis Tilgængelige Pakker" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "" @@ -7648,20 +7654,6 @@ msgstr "Slettet" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "Filkilder" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Vis Installerede Pakker" - #: ../../server/server_reagent.py:64 #, fuzzy msgid "no package specified." @@ -7713,7 +7705,7 @@ msgstr "Ingen valgte pakker" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 #, fuzzy msgid "Cannot match" msgstr "Vis Installerede Pakker" @@ -7847,13 +7839,13 @@ msgstr "Navn på den nye profil" msgid "Bumping Repository database" msgstr "Kilde" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 #, fuzzy msgid "No valid packages to repackage." msgstr "Ingen valgte pakker" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Scanning database for differences" msgstr "Kører Transaktion" @@ -7863,7 +7855,7 @@ msgstr "Kører Transaktion" msgid "Invalid atom" msgstr "_Beskrivelse" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 #, fuzzy msgid "Zarro thinggz totoo" msgstr "Ingen pakker i køen" @@ -7888,7 +7880,7 @@ msgstr "Kilde" msgid "Database transform complete" msgstr "Indlæsning af pakker afsluttet" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "" @@ -7897,7 +7889,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Ingen valgte pakker" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 #, fuzzy msgid "Remove this package?" msgstr "Vis Installerede Pakker" @@ -7907,7 +7899,7 @@ msgstr "Vis Installerede Pakker" msgid "So sweetheart, what packages do you want to add ?" msgstr "Ingen valgte pakker" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 #, fuzzy msgid "Add this package?" msgstr "Henter Pakker:" @@ -7917,66 +7909,66 @@ msgstr "Henter Pakker:" msgid "These are the packages that would be added/updated" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Søgnings Indstiller" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 #, fuzzy msgid "Would you like to package them now ?" msgstr "Vis Tilgængelige Pakker" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 #, fuzzy msgid "inside" msgstr "Filnavn" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 #, fuzzy msgid "Compressing packages" msgstr "Sorterer Pakker" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 #, fuzzy msgid "Nothing to do, check later." msgstr "Ingen pakker i køen" -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "Størrelse af filer som skal hentes" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "Henter Pakker:" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "Opdateret" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "Opdaterer" @@ -8003,6 +7995,81 @@ msgstr "Ingen pakker i køen" msgid "Nothing found" msgstr "Ingen pakker i køen" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "Filkilder" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "_Beskrivelse" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "Installeret" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Kilde" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Indlæsning af pakker afsluttet" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Kilde" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Vis Installerede Pakker" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -9621,15 +9688,6 @@ msgstr "Opdaterer" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "Du er ved at slette %s pakker\n" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "" @@ -10951,6 +11009,10 @@ msgstr "" msgid "_Load Package Manager" msgstr "Pakker" +#, fuzzy +#~ msgid "reset error" +#~ msgstr "Du er ved at slette %s pakker\n" + #, fuzzy #~ msgid "Entropy locked during lock acquire" #~ msgstr "Opsætning af Yum Konfiguration" @@ -11381,10 +11443,6 @@ msgstr "Pakker" #~ msgid "Run Entropy database updates" #~ msgstr "Filkilder" -#, fuzzy -#~ msgid "Matches to remove from repository database" -#~ msgstr "Kilde" - #, fuzzy #~ msgid "Matches to inject on repository database" #~ msgstr "Kilde" @@ -12226,10 +12284,6 @@ msgstr "Pakker" #~ msgid "Show Queued Packages" #~ msgstr "Vis Installerede Pakker" -#, fuzzy -#~ msgid "Invalid backend" -#~ msgstr "_Beskrivelse" - #, fuzzy #~ msgid "can't do that on a readonly database" #~ msgstr "Kilde" diff --git a/misc/po/de.po b/misc/po/de.po index 35eb33476..67cc9a201 100644 --- a/misc/po/de.po +++ b/misc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-02-02 14:36+0100\n" "Last-Translator: Tobias Rosenberger \n" "Language-Team: \n" @@ -18,36 +18,36 @@ msgstr "" "X-Poedit-Language: German\n" "X-Poedit-Country: GERMANY\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchronisiere aktuelle Datenbank" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "bitte warten" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Entferne Eintrag" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Füge Eintrag hinzu" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Exportiere Datenbank-Tabelle" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Datenbank-Export vollständig." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,69 +56,69 @@ msgstr "Datenbank-Export vollständig." msgid "ATTENTION" msgstr "ACHTUNG" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "SPM Fehler aufgetreten" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "einzigartiger SPM Bezeichner nicht gefunden für" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "aktualisiere Repositoriums Metadaten-Anordnung, bitte warten!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "generiere provided_libs Metadaten, bitte warten!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "erzwinge Aktualisierung der Paket-Metadaten" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "es könnte eine Weile dauern" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "Aktion" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "verschieben der Pakete vollständig" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "WARNUNG" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Kann Bereinigung von SPM nicht durchführen, Fehler" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "verschieben der Pakete erfolgreich beendet" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Verschiebe alten Eintrag" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "nach" @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Kann von SPM installierte pkg-Dateien nicht aktualisieren" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -439,7 +439,7 @@ msgid "Error calculating dependencies" msgstr "Fehler beim Berechnen der Abhängigkeiten" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "nicht unterstützt" @@ -592,8 +592,8 @@ msgstr "lade Paket herunter" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "Paket" @@ -663,8 +663,8 @@ msgstr "Upload" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "herunterladen" @@ -674,9 +674,10 @@ msgstr "kopiere" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "entfernen" @@ -748,7 +749,7 @@ msgid "sync" msgstr "synchronisieren" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "Entfernen vollständig" @@ -765,7 +766,7 @@ msgstr "Fehler beim Hochladen" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "Grund" @@ -774,12 +775,12 @@ msgid "upload completed successfully" msgstr "Upload erfolgreich abgeschlossen" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "Fehler beim Herunterladen" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "Download erfolgreich abgeschlossen" @@ -827,12 +828,12 @@ msgstr "Möchtest du die oben genannten Schritte durchführen?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -849,7 +850,8 @@ msgstr "Möchtest du die oben genannten Schritte durchführen?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nein" @@ -892,10 +894,10 @@ msgstr "dies sind die abgelaufenen Pakete" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -915,8 +917,8 @@ msgstr "entferne Pakete lokal" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "entfernt" @@ -953,7 +955,7 @@ msgid "notice board upload success" msgstr "Notizbrett erfolgreich hochgeladen" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "Schlüssel für das Repositorium ist abgelaufen" @@ -1124,31 +1126,27 @@ msgstr "Die Repositoriums-Datenbank wird dennoch aktualisiert" msgid "package has no keyword set, it will be masked !" msgstr "Paket hat kein Schlüsselwort gesetzt, es wird maskiert werden!" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Entropy Server-Schnittstelle muss als root ausgeführt werden" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "Repositorium nicht konfiguriert" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "geschützte Repositoriums-ID, kann sie nicht verwenden, sorry Kumpel ..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "ungültige Repositoriums-Revision" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "setze standardmäßig auf 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1161,86 +1159,86 @@ msgstr "setze standardmäßig auf 0" msgid "repository" msgstr "Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "synchronisiere Paket Sets" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "keine Entsprechung" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Initialisiere Entropy-Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Willst du dieses Repositorium wirklich initialisieren ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "Kein gültiges Etikett angegeben" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "spiele ausgewählte Pakete aus den Zweigen zurück" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "Nichts zu tun" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "Dies sind die Pakete, welche weggespült werden" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "überprüfe Pakethash" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "Hash stimmt nicht überein für" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "falsche md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "Fehler beim Herunterladen von Paketen am Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "arbeite auf Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "aktualisiere Paket" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "Paket gespült" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "Kann Systemrepositorium nicht anfassen" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Vorbereitung zum verschieben von ausgewählten Paketen nach" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Vorbereitung zum kopieren von ausgewählten Paketen nach" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Hinweis" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1248,416 +1246,416 @@ msgstr "" "alle alten Pakete im Konfliktbereich werden vom Zielrepositorium entfernt, " "sofern nicht eingespeist" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "neues Etikett" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "umgekehrte Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "wechseln" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "kann nicht wechseln, Paket nicht gefunden, überspringe" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "verschiebe Datei" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "lade Daten aus Quellrepositorium" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "GPG Schlüssel war verfügbar in" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "speise Daten in Zielrepositorium ein" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "entferne Eintrag aus Quellrepositorium" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "Atom erfolgreich gehandhabt" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Speise Entropy-Metadaten in die erstellten Pakete ein" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "Nur zu deiner Information, das Laden der GPG ist fehlgeschlagen" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "speise Entropy-Metadaten ein" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "Einspeisung vollständig" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "entferne Paket" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Integritätsprüfung der ausgewählten Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Alle Pakete im Repositorium werden überprüft." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Dies ist die Liste der Pakete, die überprüft würden" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Arbeite auf Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "überprüfe Hash" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "Verzeichnisprüfung von" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NICHT gesund" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Dies ist die Liste der gebrochenen Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistiken" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Zahl der überprüften Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Zahl der gesunden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Zahl der fehlerhaften Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokal" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "überprüfe Status von" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "ist beschädigt, Prüfsumme gespeichert" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "geprüfte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "gesunde Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "fehlerhafte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "heruntergeladene Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "fehlgeschlagene Downloads" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "signiere Pakete für Repositorium mit GPG" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Alle im Repositorium fehlenden Pakete werden heruntergeladen." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG nicht verfügbar" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Schlüssel nicht verfügbar für" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "signiere Paket" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Unbekannter Fehler beim Signieren des Pakets" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "signierte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "verfügbar" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "hochladen/ignoriert" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Starte Herunterladen fehlender Dateien" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Suche fehlende/fehlerhafte Dateien auf anderem Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Binärpakete erfolgreich heruntergeladen." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Dies sind die Pakete, die online nicht gefunden werden können." -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Sie werden nicht geprüft werden" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Bitte stelle deinen Zweig ein auf" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "und versuche erneut" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "Kopiere Repositorium (falls nicht existent)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Wechsle Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Ignoriere" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "bereits im Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "Migrationsschleife vollständig" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Test auf verwaiste SPM Pakete läuft" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Durchsuche Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "nicht mehr gefunden" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Paketstring" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Prüfe" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Abhängigkeitstest läuft" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Dies sind die nicht gefundenen Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Benötigt von" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "von Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Alle Abhängigkeiten sind erfüllt. Alles ist gut." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Fehlerhafte und passende Pakete aufgelistet" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Lege Ergebnisse in Datei ab" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "System ist gesund" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Vergleiche Bibliotheken mit SPM, bitte warten" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Dies sind die passenden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Keine passenden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Dein Standard-Repositorium ist nicht initialisiert" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Willst du dein Standard-Repositorium initialisieren ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Fahre mit einem uninitialisiertem Repositorium fort" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "Entropy-Repositorium wurde bereits von dir gesperrt :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "Sperre und synchronisiere Entropy-Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Spiegelserver Statustabelle" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Freigegeben" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Gesperrt" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "kann Spiegelserver nicht sperren" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Verzeichnis der Repositorydaten ist fehlerhaft" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "indiziere Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "Initialisiere ein leeres Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "Entropy Repositoriums-Datei" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "erfolgreich initialisiert" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "füge Paket hinzu" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "Paket hinzugefügt" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "manuelle Abhängigkeiten für" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Dies sind die nicht gefundenen Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Fehlende Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Bist du sicher ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1667,6 +1665,12 @@ msgstr "Bist du sicher ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1674,144 +1678,144 @@ msgstr "Bist du sicher ?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Auflösen der Metadaten" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Sperren der Datenbanken beendet" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Ausnahmefehler aufgetreten, schließe Aufgaben" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "serverseitiges Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "Gemeinschafts-Repositorium" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Entropy Server Schnittstellen-Instanz auf Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "aktueller Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "Typ" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Gegenwärtig konfigurierte Repositorien" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "GPG Schlüssel abgelaufen" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "bitte dringend korrigieren" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "GPG erhielt unerwarteten Fehler" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "überspringe" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "Konfigurationsdateien" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "überprüfe System" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "" "es existieren noch Konfigurationsdateien, die aktualisiert werden müssen" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "fand verfügbare dep_rewrites für das Paket" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "hinzugefügt" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "ersetzt" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "Keine Abhängigkeits-Neuschreibung erstellt für" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "Sets" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "aktualisiere Paketsets" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "füge Paketset hinzu" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "entferne Paketset" @@ -2349,7 +2353,8 @@ msgstr "Konfiguriere" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Ein anderes Entropy läuft bereits." @@ -6468,6 +6473,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Würdest du gerne die Abhängigkeiten berechnen lassen?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Willst du sie jetzt entfernen ?" @@ -6874,20 +6880,6 @@ msgstr "Erstellungsdatum" msgid "Expires on" msgstr "Verfällt am" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "zeige Repositories-Status" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Installierte Paketrepositorien" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "kein Paket angegeben." @@ -6930,7 +6922,7 @@ msgstr "Keine gültiges Repositorium angegeben" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Keine Entsprechung" @@ -7039,12 +7031,12 @@ msgstr "Kann bereits existierende Datei nicht überschreiben" msgid "Bumping Repository database" msgstr "Versionssprung der Repository-Datenbenk" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Keine gültigen Pakete zum Neuverpacken." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Durchsuche Datenbank nach Unterschieden" @@ -7052,7 +7044,7 @@ msgstr "Durchsuche Datenbank nach Unterschieden" msgid "Invalid atom" msgstr "Ungültiges AtomUngültige Beschreibung" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Nix zam tuan" @@ -7073,7 +7065,7 @@ msgstr "Transformiere aus Datenbank" msgid "Database transform complete" msgstr "Datenbanktransformierung beendet" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "abgelaufen" @@ -7081,7 +7073,7 @@ msgstr "abgelaufen" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Entferne dieses Paket?" @@ -7089,7 +7081,7 @@ msgstr "Entferne dieses Paket?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Dieses Paket hinzufügen?" @@ -7097,58 +7089,58 @@ msgstr "Dieses Paket hinzufügen?" msgid "These are the packages that would be added/updated" msgstr "Dies sind die Pakete, die installiert/aktualisiert würden" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "Warnung" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Willst du sie jetzt verpacken ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "innen" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Komprimiere Pakete" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Ignoriere fehlerhaften Spm-Eintrag, bitte neu kompilieren" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Nichts zu tun, schau später nochmal vorbei." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Einträge verarbeitet" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "lokale Revision" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "gespeicherte Pakete" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "hochgeladene Pakete" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "signierte Pakete" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "hinzugefügt" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "wechseln" @@ -7173,6 +7165,82 @@ msgstr "Paketset nicht gefunden" msgid "Nothing found" msgstr "Nichts gefunden" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "zeige Repositories-Status" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "diese Ausgabe" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Entferne ausgewähltes Paket" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Ungültiges backend" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "wurde eingespeist" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformiere aus Datenbank" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Datenbanktransformierung beendet" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Übereinstimmungen zum Entfernen aus der Repositoriums-Datenbank" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Sie würden zur System-Datenbank hinzugefügt werden" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Installierte Paketrepositorien" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8687,16 +8755,6 @@ msgstr "Wechsle kernel" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "diese Ausgabe" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "Sockel-Fehler" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = ohne Limit; 100 = 100kB/sek" @@ -9848,6 +9906,13 @@ msgstr "Magneto Anwendungs Update Notifier" msgid "_Load Package Manager" msgstr "_Lade Paketmanager" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Entropy Server-Schnittstelle muss als root ausgeführt werden" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "Sockel-Fehler" + #~ msgid "Barrierefreiheit" #~ msgstr "Zugreifbarkeit" @@ -10474,9 +10539,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Matches to add from Spm" #~ msgstr "Übereinstimmungen von SPM hinzufügen" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Übereinstimmungen zum Entfernen aus der Repositoriums-Datenbank" - #~ msgid "Matches to inject on repository database" #~ msgstr "Übereinstimmungen zur Einspeisung in Repositoriums-Datenbanken" @@ -11721,9 +11783,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Show Queued Packages" #~ msgstr "Zeige Pakte in der Warteschlange" -#~ msgid "Invalid backend" -#~ msgstr "Ungültiges backend" - #~ msgid "" #~ "Would you like to look for packages that can be removed along with the " #~ "selected above ?" diff --git a/misc/po/entropy.pot b/misc/po/entropy.pot index 8e45b7090..27334fc82 100644 --- a/misc/po/entropy.pot +++ b/misc/po/entropy.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,36 +17,36 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "" -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -55,68 +55,68 @@ msgstr "" msgid "ATTENTION" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 msgid "Running packages metadata update" msgstr "" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "" @@ -361,7 +361,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -434,7 +434,7 @@ msgid "Error calculating dependencies" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "" @@ -587,8 +587,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "" @@ -657,8 +657,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "" @@ -668,9 +668,10 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "" @@ -742,7 +743,7 @@ msgid "sync" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "" @@ -759,7 +760,7 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "" @@ -768,12 +769,12 @@ msgid "upload completed successfully" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "" @@ -821,12 +822,12 @@ msgstr "" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -843,7 +844,8 @@ msgstr "" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" @@ -886,10 +888,10 @@ msgstr "" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -909,8 +911,8 @@ msgstr "" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "" @@ -947,7 +949,7 @@ msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1112,30 +1114,26 @@ msgstr "" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1148,495 +1146,495 @@ msgstr "" msgid "repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 msgid "initializing repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 msgid "Repository is corrupted!" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 msgid "these are the missing dependencies" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 msgid "no missing dependencies !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 msgid "Do you agree?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1646,6 +1644,12 @@ msgstr "" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1653,141 +1657,141 @@ msgstr "" msgid "Yes" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "" @@ -2318,7 +2322,8 @@ msgstr "" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -6293,6 +6298,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "" @@ -6681,18 +6687,6 @@ msgstr "" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -msgid "show repository status" -msgstr "" - -#: ../../server/eit.py:141 -msgid "commit unstaged changes to repository" -msgstr "" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "" @@ -6735,7 +6729,7 @@ msgstr "" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "" @@ -6844,12 +6838,12 @@ msgstr "" msgid "Bumping Repository database" msgstr "" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "" @@ -6857,7 +6851,7 @@ msgstr "" msgid "Invalid atom" msgstr "" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "" @@ -6877,7 +6871,7 @@ msgstr "" msgid "Database transform complete" msgstr "" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "" @@ -6885,7 +6879,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to remove ?" msgstr "" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "" @@ -6893,7 +6887,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to add ?" msgstr "" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "" @@ -6901,56 +6895,56 @@ msgstr "" msgid "These are the packages that would be added/updated" msgstr "" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "" -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 msgid "unstaged packages" msgstr "" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 msgid "add" msgstr "" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 msgid "switch injected" msgstr "" @@ -6972,6 +6966,70 @@ msgstr "" msgid "Nothing found" msgstr "" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +msgid "show repository status" +msgstr "" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "" + +#: ../../server/eit/commands/commit.py:60 +msgid "selectively pick changes" +msgstr "" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +msgid "Invalid package" +msgstr "" + +#: ../../server/eit/commands/commit.py:181 +msgid "These would be marked as injected" +msgstr "" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +msgid "Transforming" +msgstr "" + +#: ../../server/eit/commands/commit.py:206 +msgid "Transform complete" +msgstr "" + +#: ../../server/eit/commands/commit.py:222 +msgid "What packages do you want to remove ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:236 +msgid "These would be removed from repository" +msgstr "" + +#: ../../server/eit/commands/commit.py:260 +msgid "What packages do you want to add ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:275 +msgid "These would be added or updated" +msgstr "" + +#: ../../server/eit/commands/commit.py:367 +msgid "commit changes to repository" +msgstr "" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8392,14 +8450,6 @@ msgstr "" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "" - -#: ../../server/eit:355 -msgid "reset error" -msgstr "" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "" diff --git a/misc/po/es.po b/misc/po/es.po index e7bd6c493..11e0fb856 100644 --- a/misc/po/es.po +++ b/misc/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-05-14 19:39-0000\n" "Last-Translator: Daniel Halens Rodriguez \n" "Language-Team: Spanish \n" @@ -17,36 +17,36 @@ msgstr "" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Sincronizando la base de datos actual" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espera por favor" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Eliminando entrada" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Añadiendo entrada" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Exportando la tabla de la base de datos" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Exportación de la base de datos completada." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -55,75 +55,75 @@ msgstr "Exportación de la base de datos completada." msgid "ATTENTION" msgstr "ATENCIÓN" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 #, fuzzy msgid "Spm error occured" msgstr "mirror desbloqueado" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "usuario no encontrado" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Generando metadatos, espera por favor." -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Generando metadatos, espera por favor." -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "Administrador de Paquetes Fuente" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "forzando la actualización de metadatos de los paquetes" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "puede tardar un tiempo" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "acción" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 #, fuzzy msgid "package move actions complete" msgstr "Extracción del paquete completada" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "CUIDADO" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "No se pudo ejecutar la limpieza del Administrador de Paquetes Fuente" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 #, fuzzy msgid "package moves completed successfully" msgstr "sincronización de la base de datos completada correctamente" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Moviendo la entrada antigua" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "a" @@ -377,7 +377,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -452,7 +452,7 @@ msgid "Error calculating dependencies" msgstr "Error calculando las dependencias" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "no soportado" @@ -610,8 +610,8 @@ msgstr "descargando el paquete" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "paquete" @@ -683,8 +683,8 @@ msgstr "subida" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "descargado" @@ -694,9 +694,10 @@ msgstr "copia" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "eliminar" @@ -768,7 +769,7 @@ msgid "sync" msgstr "sincronización" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "eliminación completada" @@ -785,7 +786,7 @@ msgstr "errores en la subida" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "razón" @@ -794,12 +795,12 @@ msgid "upload completed successfully" msgstr "subida completada correctamente" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "errores en la descarga" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "descarga completada correctamente" @@ -849,12 +850,12 @@ msgstr "¿ Quieres ejecutar los pasos descritos ?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -871,7 +872,8 @@ msgstr "¿ Quieres ejecutar los pasos descritos ?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" @@ -915,10 +917,10 @@ msgstr "estos son los paquetes que han expirado" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -938,8 +940,8 @@ msgstr "eliminando paquetes localmente" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "eliminados" @@ -979,7 +981,7 @@ msgid "notice board upload success" msgstr "subida del tablón de anuncios correcta" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1169,31 +1171,27 @@ msgstr "La base de datos del repositorio fue actualizada de todas formas" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "La interfaz del Servidor Entropy debe ejecutarse como root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "no es un repositorio configurado" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "no se puede usar como id porque es una id de repositorio protegida" -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Revisión del repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "dejando por defecto 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1206,100 +1204,100 @@ msgstr "dejando por defecto 0" msgid "repository" msgstr "repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "sets de paquetes configurados" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "no se pudo hacer coincidir" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Inicializando la base de datos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "¿ Quieres inicializar tu repositorio por defecto ?" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 #, fuzzy msgid "Invalid tag specified" msgstr "etiqueta especificada inválida" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 #, fuzzy msgid "flushing back selected packages from branches" msgstr "copiando de nuevo los paquetes seleccionados desde las ramas" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "¡ nada que hacer" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 #, fuzzy msgid "these are the packages that will be flushed" msgstr "estos son los paquetes que serán enviados" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "comprobando el hash del paquete" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "el hash no coincide para" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "md5 incorrecto" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 #, fuzzy msgid "error downloading packages from mirrors" msgstr "error descargando paquetes desde los mirrors" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "trabajando en la rama" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "actualizando paquete" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 #, fuzzy msgid "package flushed" msgstr "paquete enviado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "No se pudo actualizar la base de datos del sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Preparándose para mover los paquetes seleccionados a" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Preparándose para copiar los paquetes seleccionados a" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 #, fuzzy msgid "" "all old packages with conflicting scope will be removed from destination " @@ -1309,457 +1307,457 @@ msgstr "" "de destino salvo que sean inyectados" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 #, fuzzy msgid "new tag" msgstr "nueva etiqueta" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Dependencias inversas" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 #, fuzzy msgid "dependency" msgstr "dependencia" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "cambiando" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "no se puede cambiar. Paquete no encontrado, omitiendo" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "moviendo el archivo" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "cargando datos desde la base de datos fuente" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "no disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "inyectando datos en la base de datos de destino" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "eliminando entrada de la base de datos fuente" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "correctamente manejado el atom" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Inyectando metadatos de Entropy en los paquetes creados" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "inyectando metadatos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "inyección completada" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "eliminando paquete" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Verificación de integridad de los paquetes seleccionados" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 #, fuzzy msgid "All the packages in repository will be checked." msgstr "Todos los paquetes en el repositorio serán comprobados." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Esta es la lista de paquetes que serán comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Trabajando en el mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "comprobando el hash" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "verificación de la firma de" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NO está en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Esta es la lista de paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Estadísticas" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Número de paquetes comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Número de paquetes en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Número de paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "comprobando el estado de" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "está corrupto. Se ha almacenado la suma de verificación" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "paquetes comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "paquetes en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "paquetes descargados" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "descargas fallidas" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "usando Paquetes en el repositorio" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Todos los paquetes en el repositorio serán comprobados." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "no disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "no está disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Uniendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Uniendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "Paquete enmascarado" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "subido/ignorado" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Comenzando a descargar los archivos desaparecidos" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Buscando los paquetes rotos/desaparecidos en otro mirror" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 #, fuzzy msgid "Binary packages downloaded successfully." msgstr "Paquetes binarios descargados correctamente." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Estos son los paquetes que no se pudieron encontrar online" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "No serán comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Por favor, fija tu rama en" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "y vuelve a intentarlo" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copiando la base de datos (si no existe)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Conmutando paquetes" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Ignorando" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "ya estaba en la rama" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "ciclo de migración completado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "" "Ejecutando test de paquetes huérfanos del Administrador de Paquetes Fuente" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Registrando paquete" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 #, fuzzy msgid "not found anymore" msgstr "no encontrado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 #, fuzzy msgid "Packages string" msgstr "Cadena de los Paquetes" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Comprobando" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Ejecutando test de dependencias" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Dependencias no encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requeridas por" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "por el repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Todas las dependencias están satisfechas. Todo está bien." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 #, fuzzy msgid "Broken and matched packages list" msgstr "No coincide ningún paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "Volcando las revisiones actuales al archivo" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "El sistema está en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "" "Haciendo coincidir bibliotecas con el Administrador de Paquetes Fuente, " "espera por favor" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Estos son los paquetes que coinciden" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "No coincide ningún paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Tu repositorio por defecto no está inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "¿ Quieres inicializar tu repositorio por defecto ?" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 #, fuzzy msgid "Continuing with an uninitialized repository" msgstr "Continuando con un repositorio no inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "La base de datos de Entropy ya estaba bloqueada por ti :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Bloqueando y sincronizando la base de datos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Tabla de estado de los mirrors" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Desbloqueado" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Bloqueado" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "no se pudo bloquear el mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "el diccionario repodata está corrupto" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Omitiendo repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Inicializando una base de datos vacía" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Administrador de Repositorios de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "ha sido inicializado correctamente" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "añadiendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "paquete añadido" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "revisión" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 #, fuzzy msgid "manual dependencies for" msgstr "Sin dependencias" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Dependencias no encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Dependencias extraviadas" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "¿ Estás seguro ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1769,6 +1767,12 @@ msgstr "¿ Estás seguro ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1776,150 +1780,150 @@ msgstr "¿ Estás seguro ?" msgid "Yes" msgstr "Si" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Resolviendo metadatos" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Bloqueo de las bases de datos completado" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Excepción capturada, cerrando tareas" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "repositorio del servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "repositorio community" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Instancia de la Interfaz del Servidor de Entropy en el repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "rama actual" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Repositorios configurados actualmente" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 #, fuzzy msgid "GPG key expired" msgstr "expirados" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "arréglalo por favor" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "archivos de conf." #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "comprobando el sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "hay archivos de configuración que aún no han sido actualizados" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "Para ser añadido" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "hace las reglas de las dependencias mas estrictas" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "actualizando paquete" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "añadiendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "eliminando paquete" @@ -2476,7 +2480,8 @@ msgstr "Configurando" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -6754,6 +6759,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "¿ Calcular las dependencias ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "¿ Quieres eliminarlos ?" @@ -7188,20 +7194,6 @@ msgstr "Fecha de creación" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "muestra el estado de los repositorios" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Paquetes instalados" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "no se especificó ningún paquete." @@ -7246,7 +7238,7 @@ msgstr "No se especificó un repositorio válido." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "No se puede hacer coincidir" @@ -7367,12 +7359,12 @@ msgstr "No se puede sobrescribir un archivo ya existente" msgid "Bumping Repository database" msgstr "Sacudiendo la base de datos del repositorio" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "No hay paquetes válidos para reempaquetar." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Buscando diferencias en la base de datos" @@ -7381,7 +7373,7 @@ msgstr "Buscando diferencias en la base de datos" msgid "Invalid atom" msgstr "Acción inválida." -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Nah' que hacerl" @@ -7402,7 +7394,7 @@ msgid "Database transform complete" msgstr "Transformación de la base de datos completada" # [server] -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 #, fuzzy msgid "expired" msgstr "expirados" @@ -7412,7 +7404,7 @@ msgstr "expirados" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Elige el Set de Paquetes que quieres eliminar" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 #, fuzzy msgid "Remove this package?" msgstr "Eliminar paquetes" @@ -7422,7 +7414,7 @@ msgstr "Eliminar paquetes" msgid "So sweetheart, what packages do you want to add ?" msgstr "Elige el Set de Paquetes que quieres añadir" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 #, fuzzy msgid "Add this package?" msgstr "Enmascarar este paquete" @@ -7432,64 +7424,64 @@ msgstr "Enmascarar este paquete" msgid "These are the packages that would be added/updated" msgstr "Los siguientes paquetes serán instalados o actualizados" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Atención" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "¿ Quieres empaquetarlos ahora ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "dentro de" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Comprimiendo paquetes" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" "Ignorando la entrada del Administrador de Paquetes Fuente rota, recompílalo " "por favor" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Nada que hacer, vuelve a comprobar mas tarde." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Entradas manejadas" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "revisión" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "Paquete enmascarado" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "paquetes descargados" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "Paquete enmascarado" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "Para ser añadido" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "cambiando" @@ -7517,6 +7509,82 @@ msgstr "set de paquetes no encontrado" msgid "Nothing found" msgstr "No se encontró nada" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "muestra el estado de los repositorios" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "este mensaje" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Eliminando los paquetes seleccionados" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Backend inválido" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "ha sido inyectado" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformando desde la base de datos" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Transformación de la base de datos completada" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Elige el Set de Paquetes que quieres eliminar" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Coincidencias a eliminar desde la base de datos del repositorio" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Elige el Set de Paquetes que quieres añadir" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Serán añadidos a la base de datos del sistema" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Paquetes instalados" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -9040,16 +9108,6 @@ msgstr "Cambiar repositorio" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "este mensaje" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "error de socket" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = sin límite; 100 = 100 kB/seg" @@ -10232,6 +10290,13 @@ msgstr "Magneto - Notificador de Actualizaciones de Paquetes" msgid "_Load Package Manager" msgstr "_Ejecutar el Administrador de Paquetes" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "La interfaz del Servidor Entropy debe ejecutarse como root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "error de socket" + #, fuzzy #~ msgid "Entropy locked during lock acquire" #~ msgstr "Entropy está bloqueado, nos rendimos" @@ -10865,9 +10930,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Matches to add from Spm" #~ msgstr "Coincidencias a añadir desde el Administrador de Paquetes Fuente" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Coincidencias a eliminar desde la base de datos del repositorio" - #~ msgid "Matches to inject on repository database" #~ msgstr "Coincidencias a inyectar en la base de datos del repositorio" @@ -12094,9 +12156,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Show Queued Packages" #~ msgstr "Mostrar Paquetes en cola" -#~ msgid "Invalid backend" -#~ msgstr "Backend inválido" - #~ msgid "" #~ "Would you like to look for packages that can be removed along with the " #~ "selected above ?" diff --git a/misc/po/fr.po b/misc/po/fr.po index d9a18f14b..6f9ec0fc0 100644 --- a/misc/po/fr.po +++ b/misc/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: French Entropy translation for Sabayon Linux 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2009-12-04 15:32+0100\n" "Last-Translator: SUFFYS \n" "Language-Team: French \n" @@ -14,37 +14,37 @@ msgstr "" "X-Poedit-Country: FRANCE\n" "X-Poedit-SourceCharset: iso-8859-1\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchro de la base de données courante" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "veuillez patienter" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Suppression de l'élément" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Ajout de l'élément" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Export de la table de la base de données" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 #, fuzzy msgid "Database Export complete." msgstr "Export de la base de données terminé." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -53,73 +53,73 @@ msgstr "Export de la base de données terminé." msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 #, fuzzy msgid "Spm error occured" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "utilisateur introuvable" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "Forcer la mise à jour des métadonnées des paquets" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "cela pourrait prendre du temps" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "ACTION" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "actions de déplacement de paquet terminées" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "AVERTISSEMENT" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "déplacements de paquets complétés avec succès" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Déplacement d'un vieil élément" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "à" @@ -374,7 +374,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -449,7 +449,7 @@ msgid "Error calculating dependencies" msgstr "Erreur lors du calcul des dépendances" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "non supporté" @@ -607,8 +607,8 @@ msgstr "téléchargement de paquet" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "paquet" @@ -678,8 +678,8 @@ msgstr "envoi" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "télécharger" @@ -689,9 +689,10 @@ msgstr "copie" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "suppression" @@ -763,7 +764,7 @@ msgid "sync" msgstr "synchroniser" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "Suppression terminée" @@ -780,7 +781,7 @@ msgstr "erreurs d'envoi" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "raison" @@ -789,12 +790,12 @@ msgid "upload completed successfully" msgstr "envoi complété avec succès" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "erreurs de téléchargement" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "téléchargement terminé avec succès" @@ -845,12 +846,12 @@ msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -867,7 +868,8 @@ msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Non" @@ -910,10 +912,10 @@ msgstr "voici les paquets expirés" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -933,8 +935,8 @@ msgstr "suppression des paquets localement" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "suppression" @@ -975,7 +977,7 @@ msgid "notice board upload success" msgstr "envoi du tableau d'affichage complété" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1163,31 +1165,27 @@ msgstr "Base de données du dépôt mise à jour quand même" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "Dépôt non configuré" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de dépôt protégé, ne peut être utilisé, désolé l'ami..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Révision du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "valeur par défaut définie à 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1200,89 +1198,89 @@ msgstr "valeur par défaut définie à 0" msgid "repository" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "ne correspond pas" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Initialisation de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "Étiquette invalide spécifiée" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 #, fuzzy msgid "flushing back selected packages from branches" msgstr "Suppression des paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "rien à faire" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "voici les paquets qui seront purgés" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "vérification de la clé de hachage du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "la clé de hachage ne correspond pas pour " -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "mauvais clé md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "erreur au téléchargement des paquets du mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "travail sur la branche" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "paquet purgé" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossible de toucher la base de données système" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Préparation au déplacement des paquets sélectionnés vers " -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Préparation à la copie des paquets sélectionnés vers" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1290,439 +1288,439 @@ msgstr "" "tous les vieux paquets à portée conflictuelle seront supprimés du dépôt de " "destination à moins d'être injectés" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nouvelle étiquette" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Dépendances inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "dépendance" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "bascule" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 #, fuzzy msgid "cannot switch, package not found, skipping" msgstr "impossible de basculer, paquet introuvable, saut" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "déplacement du fichier" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "chargement des données de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "injection des données dans la base de données cible" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "Suppression de l'élément de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Injection de métadonnées Entropy dans les paquets compilés" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "injection de métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "injection terminée" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "Suppression du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Vérification d'intégrité sur les paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Ceci est la liste des paquets qui seraient vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Travail sur le miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "Vérification de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "vérification de hachage sur" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 #, fuzzy msgid "NOT healthy" msgstr "PAS sain" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Ceci est la liste des paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistiques" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Nombre de paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Nombre de paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Nombre de paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "vérification de l'état de " -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "est corrompu, conservation de la somme de contrôle" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "Paquets téléchargés" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "Téléchargements échoués" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "utilisation des paquets dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "n'est pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "Paquet masqué" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "envoyé/ignoré" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Début du téléchargement des fichiers manquants" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Recherche de fichiers manquants/endommagés sur un autre miroir" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Paquets binaires téléchargés avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Voici les paquets qui ne peuvent être trouvés en ligne" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Ils ne seront pas vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Veuillez configurer votre branche sur" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "et réessayez" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copie de la base de données (si inexistante)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Basculer les paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Rejet" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "déjà dans la branche" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "boucle de migration complétée" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "Vérification des dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Vérification du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "n'est plus trouvable" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Chaîne de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Vérification" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Exécution d'un test de dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requis par" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "par dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Chaque dépendance est satisfaite. Tout est OK." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 #, fuzzy msgid "Broken and matched packages list" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "déjà activé" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Le système est stable" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Vérifie les librairies avec Spm, merci de patienter" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Voici les paquets correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Votre dépôt par défaut n'est pas initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Poursuite avec un dépôt non initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Base de données Entropy déjà verrouillée par vous :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Verrouillage et synchro de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Table d'état des mirroirs" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Déverrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Verrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "Impossible de verrouiller le mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Les données du dictionnaire du dépôt sont corrompues" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Saut du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Initialisation d'une base de données vide" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Gestionnaire de dépôts Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "initialisé avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "paquet ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rév" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "dépendances manuelles pour" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Aucune dépendance manquante trouvée." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Êtes-vous sûr(e) ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1732,6 +1730,12 @@ msgstr "Êtes-vous sûr(e) ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1739,149 +1743,149 @@ msgstr "Êtes-vous sûr(e) ?" msgid "Yes" msgstr "Oui" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "collecte des métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Verrouillage des bases de données complété" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Exception trappée, fermeture des tâches" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "dépôt côté serveur" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "dépôt de la communauté" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Instance de l'interface du serveur Entropy dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "Branche courante" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Dépôts présentement configurés" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 #, fuzzy msgid "GPG key expired" msgstr "expiré" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "veuillez corriger" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "fichiers de configuration" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "vérification du système" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "certains fichiers de configuration ne sont pas encore à jour" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "À être ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "rendre les règles de dépendance plus strictes" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "Suppression du paquet" @@ -2446,7 +2450,8 @@ msgstr "Configuration" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -6757,6 +6762,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Voulez-vous calculer les dépendances ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Voulez-vous les supprimer maintenant ?" @@ -7192,20 +7198,6 @@ msgstr "Date de création" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "afficher l'état des dépôts" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Paquets installés" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "aucun paquet spécifié." @@ -7250,7 +7242,7 @@ msgstr "Pas de dépôts valides spécifiés." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Ne peut pas correspondre" @@ -7369,12 +7361,12 @@ msgstr "Impossible d'écraser le fichier déjà existant" msgid "Bumping Repository database" msgstr "Saut de la base de données du dépôt" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Pas de paquets valides à réempaquetter" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Vérification de la base de données pour des différences" @@ -7383,7 +7375,7 @@ msgstr "Vérification de la base de données pour des différences" msgid "Invalid atom" msgstr "Action invalide." -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "? Zarro thinggz totoo ?" @@ -7403,7 +7395,7 @@ msgstr "Transformation depuis la base de données" msgid "Database transform complete" msgstr "Transformation de la base de données complétée" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "expiré" @@ -7412,7 +7404,7 @@ msgstr "expiré" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Pas de dépôt trouvé en ligne" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Supprimer ce paquet ?" @@ -7421,7 +7413,7 @@ msgstr "Supprimer ce paquet ?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Pas de dépôt trouvé en ligne" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Ajouter ce paquet ?" @@ -7430,62 +7422,62 @@ msgstr "Ajouter ce paquet ?" msgid "These are the packages that would be added/updated" msgstr "Voici les paquets qui seraient installés/mis à jour" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Avertissement" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Voulez-vous les empaquetter maintenant ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "à l'intérieur" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Compression des paquets" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Rien à faire, vérifiez plus tard." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Entrées gérées" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "révision" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "Paquets téléchargés" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "À être ajouté" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "bascule" @@ -7511,6 +7503,82 @@ msgstr "Pas de paquets trouvés" msgid "Nothing found" msgstr "Rien trouvé" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "afficher l'état des dépôts" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "cette sortie" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Suppression des paquets sélectionnés" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Installation du paquet" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "a été injecté" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformation depuis la base de données" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Transformation de la base de données complétée" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Pas de dépôt trouvé en ligne" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Correspondances à supprimer de la base de données du dépôt" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Pas de dépôt trouvé en ligne" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Ils seraient ajoutés à la base de données système" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Paquets installés" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -9046,16 +9114,6 @@ msgstr "Basculer le dépôt" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "cette sortie" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "erreur de socket" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = aucune limite; 100 = 100 Ko/sec" @@ -10248,6 +10306,13 @@ msgstr "Icône de notifications " msgid "_Load Package Manager" msgstr "_Charger le gestionnaire de paquets" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "erreur de socket" + #~ msgid "Entropy locked during lock acquire" #~ msgstr "Entropy verrouillé durant l'acquisition du verrou" @@ -10822,9 +10887,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Run Entropy database updates" #~ msgstr "Exécuter les mises à jour de la base de données Eétropy" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Correspondances à supprimer de la base de données du dépôt" - #, fuzzy #~ msgid "Matches to inject on repository database" #~ msgstr "faire quelques recherches dans les bases de données des dépôts" diff --git a/misc/po/fr_CA.po b/misc/po/fr_CA.po index 1719146ee..a9da6c025 100644 --- a/misc/po/fr_CA.po +++ b/misc/po/fr_CA.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: French Entropy translation for Sabayon Linux 0.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2009-09-17 20:16-0500\n" "Last-Translator: Benjamin\n" "Language-Team: Benjamin Guay\n" @@ -13,37 +13,37 @@ msgstr "" "X-Poedit-Language: French\n" "X-Poedit-Country: Canada\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchro de la base de données courante" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "veuillez patienter" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Suppression de l'élément" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Ajout de l'élément" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Export de la table de la base de données" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 #, fuzzy msgid "Database Export complete." msgstr "Export de la base de données terminé." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -52,73 +52,73 @@ msgstr "Export de la base de données terminé." msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 #, fuzzy msgid "Spm error occured" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Emplacement du compteur SPM introuvable dans" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "Forcer la mise à jour des métadonnées des paquets" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "cela pourrait prendre du temps" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "ACTION" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "actions de déplacement de paquet terminées" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "AVERTISSEMENT" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Impossible d'exécuter le nettoyage SPM, erreur" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "déplacements de paquets complétés avec succès" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Déplacement d'un vieil élément" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "à" @@ -372,7 +372,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Impossible de mettre à jour le fichiers des paquets SPM installés" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -446,7 +446,7 @@ msgid "Error calculating dependencies" msgstr "Erreur lors du calcul des dépendances" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "non supporté" @@ -604,8 +604,8 @@ msgstr "téléchargement du paquet" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "paquet" @@ -675,8 +675,8 @@ msgstr "envoi" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "télécharger" @@ -686,9 +686,10 @@ msgstr "copie" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "suppression" @@ -760,7 +761,7 @@ msgid "sync" msgstr "synchroniser" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "Suppression terminée" @@ -777,7 +778,7 @@ msgstr "erreurs d'envoi" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "raison" @@ -786,12 +787,12 @@ msgid "upload completed successfully" msgstr "envoi complété avec succès" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "erreurs de téléchargement" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "téléchargement terminé avec succès" @@ -839,12 +840,12 @@ msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -861,7 +862,8 @@ msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Non" @@ -904,10 +906,10 @@ msgstr "voici les paquets expirés" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -927,8 +929,8 @@ msgstr "suppression des paquets localement" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "suppression" @@ -969,7 +971,7 @@ msgid "notice board upload success" msgstr "envoi du tableau d'affichage complété" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1160,31 +1162,27 @@ msgstr "Base de données du dépôt mise à jour quand même" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "Dépôt non configuré" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de dépôt protégé, ne peut être utilisé, désolé l'ami..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Révision du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "valeur par défaut définie à 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1197,88 +1195,88 @@ msgstr "valeur par défaut définie à 0" msgid "repository" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "ne correspond pas" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Initialisation de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "Étiquette invalide spécifiée" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "nettoyage des paquets sélectionnées des branches" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "rien à faire" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "voici les paquets qui seront purgés" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "vérification de la clé de hachage du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "la clé de hachage ne correspond pas pour " -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "mauvais clé md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "erreur au téléchargement des paquets du mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "travail sur la branche" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "paquet purgé" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossible de toucher la base de données système" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Préparation au déplacement des paquets sélectionnés vers " -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Préparation à la copie des paquets sélectionnés vers" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1286,434 +1284,434 @@ msgstr "" "tous les vieux paquets à portée conflictuelle seront supprimés du dépôt de " "destination à moins d'être injectés" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nouvelle étiquette" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Dépendances inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "dépendance" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "bascule" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "impossible de basculer, paquet introuvable, saut" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "déplacement du fichier" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "chargement des données de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "injection des données dans la base de données cible" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "Suppression de l'élément de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "manipulation de l'atome effectuée avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Injection de métadonnées Entropy dans les paquets compilés" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "injection de métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "injection terminée" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "Suppression du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Vérification d'intégrité sur les paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Ceci est la liste des paquets qui seraient vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Travail sur le miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "Vérification de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "vérification de hachage sur" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "PAS en santé" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Ceci est la liste des paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistiques" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Nombre de paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Nombre de paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Nombre de paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "vérification de l'état de " -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "est corrompu, conservation de la somme de contrôle" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "Paquets téléchargés" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "Téléchargements échoués" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "utilisation des paquets dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "n'est pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "Paquet masqué" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "envoyé/ignoré" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Début du téléchargement des fichiers manquants" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Recherche de fichiers manquants/endommagés sur un autre miroir" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Paquets binaires téléchargés avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Voici les paquets qui ne peuvent être trouvés en ligne" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Ils ne seront pas vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Veuillez configurer votre branche sur" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "et réessayez" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copie de la base de données (si inexistante)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Basculer les paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Saut" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "déjà dans la branche" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "boucle de migration complétée" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Exécution du test des paquets SPM orphelins" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Vérification du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "n'est plus trouvable" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Chaîne de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Vérification" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Exécution d'un test de dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requis par" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "par dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Chaque dépendance est satisfaite. Tout est OK." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Liste de paquets endommagés et correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Déversement des résultats dans ces fichiers" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Le système est stable" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Vérifie les librairies avec Spm, merci de patienter" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Voici les paquets correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Votre dépôt par défaut n'est pas initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Poursuite avec un dépôt non initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Base de données Entropy déjà verrouillée par vous :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Verrouillage et synchro de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Table d'état des mirroirs" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Déverrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Verrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "Impossible de verrouiller le mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Les données du dictionnaire du dépôt sont corrompues" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Saut du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Initialisation d'une base de données vide" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Gestionnaire de dépôts Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "initialisé avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "paquet ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rév" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "dépendances manuelles pour" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Aucune dépendance manquante trouvée." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Êtes-vous sûr(e) ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1723,6 +1721,12 @@ msgstr "Êtes-vous sûr(e) ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1730,149 +1734,149 @@ msgstr "Êtes-vous sûr(e) ?" msgid "Yes" msgstr "Oui" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Résolution des métadonnées" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Verrouillage des bases de données complété" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Exception trappée, fermeture des tâches" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "dépôt côté serveur" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "dépôt de la communauté" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Instance de l'interface du serveur Entropy dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "Branche courante" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Dépôts présentement configurés" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 #, fuzzy msgid "GPG key expired" msgstr "expiré" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "veuillez corriger" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "fichiers de configuration" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "vérification du système" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "certains fichiers de configuration ne sont pas encore à jour" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "À être ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "rendre les règles de dépendance plus strictes" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "Suppression du paquet" @@ -2423,7 +2427,8 @@ msgstr "Configuration" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -6693,6 +6698,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Voulez-vous calculer les dépendances ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Voulez-vous les supprimer maintenant ?" @@ -7126,20 +7132,6 @@ msgstr "Date de création" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "afficher l'état des dépôts" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Paquets installés" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "aucun paquet spécifié." @@ -7184,7 +7176,7 @@ msgstr "Pas de dépôts valides spécifiés." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Ne peut pas correspondre" @@ -7303,12 +7295,12 @@ msgstr "Impossible d'écraser le fichier déjà existant" msgid "Bumping Repository database" msgstr "Saut de la base de données du dépôt" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Pas de paquets valides à réempaquetter" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Vérification de la base de données pour des différences" @@ -7317,7 +7309,7 @@ msgstr "Vérification de la base de données pour des différences" msgid "Invalid atom" msgstr "Action invalide." -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "? Zarro thinggz totoo ?" @@ -7337,7 +7329,7 @@ msgstr "Transformation depuis la base de données" msgid "Database transform complete" msgstr "Transformation de la base de données complétée" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "expiré" @@ -7346,7 +7338,7 @@ msgstr "expiré" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 #, fuzzy msgid "Remove this package?" msgstr "Supprimer les paquets" @@ -7356,7 +7348,7 @@ msgstr "Supprimer les paquets" msgid "So sweetheart, what packages do you want to add ?" msgstr "Choisir quel groupe de paquets vous voulez ajouter" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 #, fuzzy msgid "Add this package?" msgstr "Masquer ce paquet" @@ -7366,62 +7358,62 @@ msgstr "Masquer ce paquet" msgid "These are the packages that would be added/updated" msgstr "Voici les paquets qui seraient installés/mis à jour" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Avertissement" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Voulez-vous les empaquetter maintenant ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "à l'intérieur" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Compression des paquets" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Saut de l'entrée du SPM endommagé, veuillez le recompiler" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Rien à faire, vérifiez plus tard." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Entrées gérées" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "révision" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "Paquets téléchargés" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "À être ajouté" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "bascule" @@ -7445,6 +7437,82 @@ msgstr "groupe de paquets introuvable" msgid "Nothing found" msgstr "Rien trouvé" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "afficher l'état des dépôts" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "cette sortie" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Suppression des paquets sélectionnés" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Installation du paquet" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "a été injecté" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformation depuis la base de données" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Transformation de la base de données complétée" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Correspondances à supprimer de la base de données du dépôt" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Choisir quel groupe de paquets vous voulez ajouter" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Ils seraient ajoutés à la base de données système" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Paquets installés" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8968,16 +9036,6 @@ msgstr "Basculer le dépôt" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "cette sortie" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "erreur de socket" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = aucune limite; 100 = 100 Ko/sec" @@ -10141,6 +10199,13 @@ msgstr "Icône de notification" msgid "_Load Package Manager" msgstr "_Lancer le gestionnaire de paquets" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "erreur de socket" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Impossible d'acquérir le verrouillages des ressources d'Entropy" @@ -10779,9 +10844,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Matches to add from Spm" #~ msgstr "Correspondances à ajouter à partir du SPM" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Correspondances à supprimer de la base de données du dépôt" - #~ msgid "Matches to inject on repository database" #~ msgstr "Correspondances à injecter dans la base de données du dépôt" diff --git a/misc/po/it.po b/misc/po/it.po index b3efd0f04..30a3a8cd8 100644 --- a/misc/po/it.po +++ b/misc/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spritz 0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2010-09-29 13:49+0100\n" "Last-Translator: Fabio Erculiani \n" "Language-Team: Fabio Erculiani \n" @@ -19,36 +19,36 @@ msgstr "" "X-Poedit-Country: ITALY\n" "X-Poedit-SourceCharset: iso-8859-1\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Sincronizzazione database corrente" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "attendere prego" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Rimozione voce" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Aggiunta voce" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Esportazione tabella database" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Esportazione database completata." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,69 +57,69 @@ msgstr "Esportazione database completata." msgid "ATTENTION" msgstr "ATTENZIONE" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "Errore SPM" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "Identificativo univoco in SPM non trovato per" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "aggiornamento layout metadati della repository, attendere prego!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "Generazione metadati provided_libs, attendere!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "forzatura aggiornamento metadati pacchetti" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "potrebbe metterci un po'" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "azione" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "azioni di spostamento pacchetti completate" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "ATTENZIONE" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Impossibile eseguire pulizia SPM, errore" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "spostamento pacchetti completato con successo" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Spostamento elemento vecchio" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "a" @@ -377,7 +377,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -450,7 +450,7 @@ msgid "Error calculating dependencies" msgstr "Errore di calcolo dipendenze" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "non supportato" @@ -605,8 +605,8 @@ msgstr "scaricamemento database" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "pacchetto" @@ -677,8 +677,8 @@ msgstr "upload" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "download" @@ -688,9 +688,10 @@ msgstr "copia" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "rimozione" @@ -762,7 +763,7 @@ msgid "sync" msgstr "sync" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "rimozione completata" @@ -779,7 +780,7 @@ msgstr "problemi di upload" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "motivo" @@ -788,12 +789,12 @@ msgid "upload completed successfully" msgstr "upload completato con successo" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "errori di download" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "download completato con successo" @@ -841,12 +842,12 @@ msgstr "Vuoi eseguire i passi di cui sopra ?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -863,7 +864,8 @@ msgstr "Vuoi eseguire i passi di cui sopra ?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" @@ -906,10 +908,10 @@ msgstr "questi sono i pacchetti scaduti" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -929,8 +931,8 @@ msgstr "rimozione pacchetti locali" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "rimossi" @@ -967,7 +969,7 @@ msgid "notice board upload success" msgstr "upload notice board eseguito con successo" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "Le chavi per la repository sono scadute" @@ -1149,31 +1151,27 @@ msgstr "Database repository aggiornato comunque" msgid "package has no keyword set, it will be masked !" msgstr "pacchetto senza keywords, sarà mascherato!" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Interfaccia Entropy Server deve essere avviata da root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "repository non configurata" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "repository id protetto, impossibile usarlo, mi dispiace..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Revisione repository" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "impostazione a 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1186,87 +1184,87 @@ msgstr "impostazione a 0" msgid "repository" msgstr "repository" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "sincronizzazione package sets" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "impossibile risolvere" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Inizializzazione database Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Vuoi inizializzare la tua repository di default ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "Tag specificata non valida" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "inglobamento dei pacchetti selezionati dalle branch" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "niente da fare" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "questi sono i pacchetti che saranno inglobati" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "controllo hash pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "hash non combacia per" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "md5 errato" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "errore scaricando i pacchetti dai mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "esecuzione su branch" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "aggiornamento pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "pacchetto inglobato" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossibile toccare il database di sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Preparazione allo spostamento dei pacchetti selezionati a" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Preparazione alla copia dei pacchetti selezionati" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1274,424 +1272,424 @@ msgstr "" "tutti i pacchetti vecchi con scope in conflitto saranno rimossi dalla " "destinazione a meno che non siano iniettati" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nuova tag" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "dipendenza inversa" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "dipendenza" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "migrazione" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "impossibile migrare, pacchetto non trovato, salto" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "spostamento file" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "caricamento dati dal database sorgente" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "La chiave GPG era disponibile in" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "iniettamento dati nel database di destinazione" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "rimozione voce dal database sorgente" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "atomo gestito con successo" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Iniezione metadati entropy all'interno dei pacchetti creati" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "Per tua informazione, il sistema GPG non è stato caricato" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "iniezione metadati entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "iniezione completata" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "rimozione pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Verifica integrità dei pacchetti selezionati" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Tutti i pacchetti nella repository saranno controllati." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Questa è la list dei pacchetti che vorrebbero essere controllati" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Lavoro sul mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "controllo firma" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "verifica firma di" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NON sano" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Questo è l'elenco dei pacchetti danneggiati" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistiche" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Numero di pacchetti controllati" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Numero di pacchetti sani" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Numero di pacchetti danneggiati" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "locale" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "controllo stato di" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "è corrotto, firma immagazzinata" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "pacchetti controllati" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "pacchetti sani" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "pacchetti corrotti" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "pacchetti scaricati" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "scaricamenti falliti" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "Firma pacchetti con chiave GPG per la repository" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Tutti i pacchetti mancanti nella repository saranno scaricati." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG non disponibile" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Chiavi non disponibili per" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "firma pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Errore sconosciuto durante firma pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "pacchetti firmati" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponibile" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "upload/ignorato" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Inizio scaricamento file mancanti" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Ricerca file mancanti/corrotti su un altro mirror" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Pacchetti binari scaricati con successo." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Questi sono i pacchetti che non sono stati trovati online" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Non saranno controllati" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Per favore, configura la tua branch a" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "e riprova" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copiatura database (se non esiste)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Migrazione pacchetti" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Ignoro" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "già in branch" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "ciclo di migrazione completato" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Esecuzione test pacchetti SPM orfani" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Scansione pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "non più trovato" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Stringa pacchetti" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Controllo" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Esecuzione test dipendenze" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Queste sono le dipendenze non trovate" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Richiesto da" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "dalla repo" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Ogni dipendenza è soddisfatta. Tutto a posto." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Lista di pacchetti rotti ed accoppiati" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Riversamento risultati dentro questi file" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Il Sistema è sano" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Accoppiamento librerie con Spm, attendere prego" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Questi sono i pacchetti accoppiati" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Nessun pacchetto accoppiato" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "La tua repository di default non è inizializzata" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Vuoi inizializzare la tua repository di default ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Elaborazione con repository non inizializzata" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Database Entropy già bloccato da te :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Blocco e sincronizzazione database Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Tabella stato dei mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Sbloccato" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Bloccato" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "impossibile bloccare mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "dizionario repodata è corrotto" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "indicizzazione repository" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Inizializzazione database vuoto" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "nelle repository" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "inizializzato con successo" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "aggiunta pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "pacchetto aggiunto" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "dipendenze manuali per" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Queste sono le dipendenze non trovate" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Dipendenze mancanti" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Sei sicuro ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1701,6 +1699,12 @@ msgstr "Sei sicuro ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1708,147 +1712,147 @@ msgstr "Sei sicuro ?" msgid "Yes" msgstr "Si" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Risoluzione metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Blocco database completato" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Eccezione catturata, chiusura processi" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "repository lato server" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "community repository" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Istanza Interfaccia Server Entropy su repository" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "branch corrente" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Repository correntemente configurate" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "Chiave GPG scaduta" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "per favore correggere" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "Errore GPG inaspettato" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "ignoro" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "file di config" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "controllo sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "ci sono file di configurazione non ancora aggiornati" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "trovati dep_rewrites per questo pacchetto" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "Da aggiungere" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "sostituito" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "fa in modo che le regole di dipendenza siano più severe" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "aggiornamento pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "aggiunta pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "rimozione pacchetto" @@ -2391,7 +2395,8 @@ msgstr "Configurazione" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Un'altra istanza Entropy è in esecuzione." @@ -6551,6 +6556,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Vuoi continuare con il calcolo delle dipendenze ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Vuoi rimuoverli ora ?" @@ -6977,20 +6983,6 @@ msgstr "Data di creazione" msgid "Expires on" msgstr "Scade il" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "visualizza stato repository" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Repository applicazioni installate" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "nessun pacchetto specificato." @@ -7035,7 +7027,7 @@ msgstr "Nessuna repository valida specificata." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Impossibile risolvere" @@ -7147,12 +7139,12 @@ msgstr "Impossibile sovrascrivere il file già esistente" msgid "Bumping Repository database" msgstr "Balzo del database della repository" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Nessun pacchetto valida da ripacchettizzare" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Scansione differenziale del database" @@ -7160,7 +7152,7 @@ msgstr "Scansione differenziale del database" msgid "Invalid atom" msgstr "Atomo non valido" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Da far miga!" @@ -7182,7 +7174,7 @@ msgstr "Trasformazione dal database" msgid "Database transform complete" msgstr "Trasformazione database completata" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "scaduto" @@ -7190,7 +7182,7 @@ msgstr "scaduto" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Quindi, che pacchi vuoi rimuovere ?" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Rimuovere questo pacchetto?" @@ -7198,7 +7190,7 @@ msgstr "Rimuovere questo pacchetto?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Quindi, che pacchi vuoi aggiungere ?" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Aggiungere questo pacchetto?" @@ -7206,59 +7198,59 @@ msgstr "Aggiungere questo pacchetto?" msgid "These are the packages that would be added/updated" msgstr "Questi sono i pacchetti che vorrebbero essere installati/aggiornati" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "attenzione" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Vuoi pacchettizzarli ora ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "dentro" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Compressione pacchetti" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Ignoramento delle voci Spm danneggiate, per favore ricompilalo" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Niente da fare. Controlla più tardi." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Voci gestite" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "revisione locale" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "pacchetti immagazzinati" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "pacchetti scaricati" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "pacchetti firmati" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "Da aggiungere" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "migrazione" @@ -7282,6 +7274,82 @@ msgstr "package set non trovato" msgid "Nothing found" msgstr "Trovato un fico secco" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "visualizza stato repository" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "questo output" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Rimozione dei pacchetti selezionati" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Backend non valido" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "è stato iniettato" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Trasformazione dal database" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Trasformazione database completata" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Quindi, che pacchi vuoi rimuovere ?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Match da rimuovere dal database repository" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Quindi, che pacchi vuoi aggiungere ?" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Vorrebbero essere aggiunti al database di sistema" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Repository applicazioni installate" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8786,16 +8854,6 @@ msgstr "Passa a repo" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "questo output" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "errore socket" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = nessun limite; 100 = 100kB/sec" @@ -9948,6 +10006,13 @@ msgstr "Magneto Notifier" msgid "_Load Package Manager" msgstr "_Lancia il Gestore dei pacchetti" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Interfaccia Entropy Server deve essere avviata da root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "errore socket" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Impossibile acquisire priorità risorse Entropy." @@ -10580,9 +10645,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Matches to add from Spm" #~ msgstr "Match da aggiungere da Spm" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Match da rimuovere dal database repository" - #~ msgid "Matches to inject on repository database" #~ msgstr "Match da iniettare nel database repository" @@ -11772,9 +11834,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Show Queued Packages" #~ msgstr "Visualizza Pacchetti in Coda" -#~ msgid "Invalid backend" -#~ msgstr "Backend non valido" - #~ msgid "" #~ "Would you like to look for packages that can be removed along with the " #~ "selected above ?" diff --git a/misc/po/nl.po b/misc/po/nl.po index bb34c1812..620bd6eeb 100644 --- a/misc/po/nl.po +++ b/misc/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-05-23 14:30+0100\n" "Last-Translator: Andre Parhan \n" "Language-Team: Dutch \n" @@ -20,36 +20,36 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchroniseren van huidige database" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "een moment geduld A.U.B." -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Verwijderen van ingang" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Toevoegen van ingang" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Database tabel exporteren" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Database export voltooid." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -58,68 +58,68 @@ msgstr "Database export voltooid." msgid "ATTENTION" msgstr "ATTENTIE" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "SPM fout" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "Spm Unieke Herkenning niet gevonden voor" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "updaten van repositorie metadata overzicht, even geduld!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "genereren van provided_libs metadata, even geduld!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 msgid "Running packages metadata update" msgstr "Draaien van pakketten metadata update" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "Het kan even duren" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "actie" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "pakket verplaats acties zijn voltooid" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "WAARSCHUWING" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Kan SPM opruiming niet starten, fout" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "pakket verplaatsen succesvol voltooid" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Verplaatsen van oude ingang" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "naar" @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Kan SPM geinstalleerde pkgs bestand niet updaten" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -438,7 +438,7 @@ msgid "Error calculating dependencies" msgstr "Fout tijdens het calculeren van afhankelijkheden" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "niet ondersteund" @@ -591,8 +591,8 @@ msgstr "pakket wordt gedownload" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "pakket" @@ -662,8 +662,8 @@ msgstr "upload" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "download" @@ -673,9 +673,10 @@ msgstr "kopie" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "verwijder" @@ -747,7 +748,7 @@ msgid "sync" msgstr "sync" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "verwijderen compleet" @@ -764,7 +765,7 @@ msgstr "upload fouten" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "reden" @@ -773,12 +774,12 @@ msgid "upload completed successfully" msgstr "upload met succes voltooid" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "download fouten" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "download met succes voltooid" @@ -826,12 +827,12 @@ msgstr "Wilt u de gegeven stappen volgen ?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -848,7 +849,8 @@ msgstr "Wilt u de gegeven stappen volgen ?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nee" @@ -891,10 +893,10 @@ msgstr "dit zijn de verlopen pakketten" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -914,8 +916,8 @@ msgstr "verwijderen van lokale pakketten" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "verwijderd" @@ -952,7 +954,7 @@ msgid "notice board upload success" msgstr "notitie bord upload succesvol" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "Sleutels voor repositorie verlopen" @@ -1118,30 +1120,26 @@ msgstr "Repositorie alsnog geupdate" msgid "package has no keyword set, it will be masked !" msgstr "Pakket heeft geen sleutelwoord, het wordt gemaskeerd!" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Entropy Server omgeving moet gestart worden als root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "repositorie niet geconfigureerd" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "beveiligde repositorie ID, kan deze niet gebruiken, sorry gast..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "ongeldige repositorie herziening" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "terugzetten naar 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1154,84 +1152,84 @@ msgstr "terugzetten naar 0" msgid "repository" msgstr "repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "synchroniseren van pakketten sets" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "Kan niet overeenkomen" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 msgid "initializing repository" msgstr "Initialiseren van repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "Wilt u de deze repositorie initialiseren ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "Geen geldige tag opgegeven" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "terug spoelen van geselecteerde pakketten van branches" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "niets te doen" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "Dit zijn de pakketten die worden doorgespoeld" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "Nagaan van pakket hash" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "hash komt niet overeen voor" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "verkeerde md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "fout tijdens het downloaden van pakketten van spiegels" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "werkend op branche" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "updaten van pakket" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "pakket doorgespoeld" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "Kan de systeem repositorie niet raken" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Voorbereiden van verplaatsen van geselecteerde pakketten naar" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Voorbereiden van kopieren van geselecteerde pakketten naar" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Notitie" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1239,412 +1237,412 @@ msgstr "" "alle oude pakketten met conflicterende scope zullen worden verwijderd van de " "bestemming repo tenzij geinjecteerd" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "Nieuwe tag" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "Tegengestelde afhankelijkheden" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "Afhankelijkheid" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "Veranderen" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "Kan niet wisselen, pakket niet gevonden, overslaan" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "Bestand verplaatsen" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "laden van data vanaf source repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "GPG sleutel was niet beschikbaar in" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "injecteren van data naar de repositorie locatie" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "verwijderen van invoer uit de source repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "succesvol behandeld atoom" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Injecteren van entropy metadata in de gebouwde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "Voor de duidelijkheid, GPG infrastructuur laden is mislukt" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "injecteren van Entropy metadata" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "invoeren compleet" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "Pakket verwijderen" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Integriteit verificatie van de geselecteerde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Alle pakketten in de repositorie zullen worden gecheckt." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "De volgende pakketten zullen worden gecheckt." -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Werken op spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "checken van hash" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "'digest' controle voor" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NIET gezond" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Dit is de lijst met gebroken pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistieken" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Aantal gecheckte pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Aantal gezonde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Aantal beschadigde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokaal" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "checken status van" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "is corrupt, controlesom opgeslagen" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "Gecontroleerde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "gezonde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "beschadigde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "gedownloade pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "gefaalde downloads" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "GPG ondertekend pakketten voor de repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Alle missende pakketten in de repositorie worden gedownload." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG niet beschikbaar" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Sleutels niet beschikbaar voor" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "pakket ondertekenen" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Onbekende fout tijdens ondertekenen van pakket" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "ondertekende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "Beschikbaar" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "upload/genegeerd" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Start downloaden van missende bestanden" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Aan het zoeken naar missend of beschadigde bestanden op andere spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Binaire pakketten zijn succesvol gedownload." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "De volgende pakketten kunnen niet online worden gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Ze zullen niet worden gechecked" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Zet a.u.b. uw branche naar" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "en herhaal" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "Kopieren van database (als deze niet bestaat)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Wisselen van pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "negeren" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "Al reeds in branche" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "migratie loop compleet" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Uitvoeren van wees SPM pakketten test" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Pakket scannen" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "niet meer gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Pakketten string" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Controleren" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Uitvoeren van afhankelijkheden test" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Deze afhankelijkheden zijn niet gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Nodig voor" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "bij repo" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Alle afhankelijkheden zijn voldaan. Alles zit goed." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Beschadigde en overeenkomende pakketten lijst" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Resultaten worden gedumpt in deze bestanden" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Systeem is gezond" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Vergelijken van bibliotheken met Spm, even geduld" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Dit zijn de overeenkomende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Geen overeenkomende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Je standaard repositorie is niet geinstalleerd" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Wilt u de standaard repositorie initialiseren ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Doorgaan met een niet geinitialiseerde repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "Entropy repositorie is reeds geblokkeerd door jouw :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "Blokkeren en Synchroniseren van Entropy repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "spiegels status tabel" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Vrijgemaakt" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "geblokkeerd" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "kan spiegel niet blokkeren" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 msgid "Repository is corrupted!" msgstr "Repositorie is corrupt!" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "indexeren van repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "Initialiseren van een lege repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "Entropy repositorie bestand" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "succesvol geinstalleerd" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "pakket toevoegen" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "toegevoegd pakket" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "handmatige afhankelijkheden voor" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 msgid "these are the missing dependencies" msgstr "Deze afhankelijkheden zijn niet gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 msgid "no missing dependencies !" msgstr "geen missende afhankelijkheden!" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 msgid "Do you agree?" msgstr "Weet u het zeker?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1654,6 +1652,12 @@ msgstr "Weet u het zeker?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1661,143 +1665,143 @@ msgstr "Weet u het zeker?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Oplossen van metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Databases blokkeren compleet" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Uitzondering Opgetreden, opdrachten worden afgesloten" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "server-zijde repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "communiteit repositorie" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Entropy Server Omgeving Instantie op de repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "huidige branche" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Huidig geconfigureerde repositories" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "GPG sleutel verlopen" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "repareer a.u.b." -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "GPG heeft een overwachte fout" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "overslaan" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "Config bestanden" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "checken van systeem" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "er zijn nog nieuwe configuratie bestanden niet geupdate" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "beschikbare dep_rewrites gevonden voor dit pakket" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "toegevoegd" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "vervangen" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "Geen afhankelijkheden herschrijving gedaan voor" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "sets" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "updaten van pakket sets" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "pakket set toevoegen" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "Pakket set verwijderen" @@ -2330,7 +2334,8 @@ msgstr "Configureren" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Een ander Entropy proces draait nog." @@ -6405,6 +6410,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Wilt u de afhankelijkheden berekenen ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Wilt u ze nu verwijderen ?" @@ -6806,20 +6812,6 @@ msgstr "Aanmaakdatum" msgid "Expires on" msgstr "Verloopt op" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "geef repositories status weer" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Geinstalleerde Pakketten repositorie" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "Geen pakket opgegeven." @@ -6862,7 +6854,7 @@ msgstr "Geen juiste repositorie opgegeven." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Komt niet overeen" @@ -6974,12 +6966,12 @@ msgstr "Kan niet overschrijven, bestand bestaat reeds" msgid "Bumping Repository database" msgstr "Bijwerken Repositorie database" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Er zijn geen geldige pakketten om opnieuw te verpakken." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Scannen van database op verschillen" @@ -6987,7 +6979,7 @@ msgstr "Scannen van database op verschillen" msgid "Invalid atom" msgstr "Ongeldig atoom" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Niks te doen" @@ -7008,7 +7000,7 @@ msgstr "Transformeren van database" msgid "Database transform complete" msgstr "Database transformatie compleet" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "verlopen" @@ -7016,7 +7008,7 @@ msgstr "verlopen" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Kies welke Pakket Set je wilt verwijderen" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Dit pakket verwijderen?" @@ -7024,7 +7016,7 @@ msgstr "Dit pakket verwijderen?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Kies welke Pakket Set je wilt toevoegen" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Dit pakket toevoegen?" @@ -7032,58 +7024,58 @@ msgstr "Dit pakket toevoegen?" msgid "These are the packages that would be added/updated" msgstr "Volgende pakketten zullen worden geinstalleerd/geupdate" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "Waarschuwing" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Wil je ze nu inpakken ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "binnenin" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Pakketten comprimeren" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Negeren van gebroken Spm ingang, hercompileer a.u.b." -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Niets te doen, controleer later." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Invoer behandeld" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "Herziening" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "opgeslagen pakketten" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "upload pakketten" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "ondertekende pakketten" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "toegevoegd" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "Veranderen" @@ -7107,6 +7099,81 @@ msgstr "pakket set niet gevonden" msgid "Nothing found" msgstr "Niets gevonden" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "geef repositories status weer" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "deze hulp" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Verwijderen van geselecteerde pakketten" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Ongeldig backend-type" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "is geinjecteerd" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformeren van database" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Database transformatie compleet" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Kies welke Pakket Set je wilt verwijderen" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Overeenkomende voor verwijdering van de repositorie database" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Kies welke Pakket Set je wilt toevoegen" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Deze worden toegevoegd aan de systeem database" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Geinstalleerde Pakketten repositorie" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8591,15 +8658,6 @@ msgstr "Wissel kernel" msgid "list kernels" msgstr "toon kernels" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "deze hulp" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "socket fout" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = geen limiet; 100 = 100kB/sec" @@ -9743,6 +9801,13 @@ msgstr "Magneto Software update kennisgever" msgid "_Load Package Manager" msgstr "_Start Pakketten Beheerder" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Entropy Server omgeving moet gestart worden als root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "socket fout" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Kan Entropy bestanden niet vergrendelen" @@ -10372,9 +10437,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Matches to add from Spm" #~ msgstr "Overeenkomende voor toevoeging vanaf Spm" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Overeenkomende voor verwijdering van de repositorie database" - #~ msgid "Matches to inject on repository database" #~ msgstr "Overeenkomende voor injecteren in de repositorie database" @@ -11565,9 +11627,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Show Queued Packages" #~ msgstr "Toon in Wachtrij geplaatste pakketten" -#~ msgid "Invalid backend" -#~ msgstr "Ongeldig backend-type" - #~ msgid "" #~ "Would you like to look for packages that can be removed along with the " #~ "selected above ?" diff --git a/misc/po/pl.po b/misc/po/pl.po index f6e171846..69f71e5f7 100644 --- a/misc/po/pl.po +++ b/misc/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-08-20 21:07+0100\n" "Last-Translator: Sławomir Nizio \n" "Language-Team: Sławomir Nizio \n" @@ -18,36 +18,36 @@ msgstr "" "X-Poedit-Language: Polish\n" "X-Poedit-Country: POLAND\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchronizowanie bieżącej bazy" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "proszę czekać" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Usuwanie pozycji" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Dodawanie pozycji" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Eksportowanie bazy danych" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Eksport bazy zakończony." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,68 +56,68 @@ msgstr "Eksport bazy zakończony." msgid "ATTENTION" msgstr "UWAGA" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "Błąd związany z SPM" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "Unikatowy identyfikator SPM nie znaleziony dla" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "aktualizowanie układu metadanych dla repozytorium, proszę czekać!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "generowanie metadanych provided_libs, proszę czekać!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 msgid "Running packages metadata update" msgstr "Wykonywanie aktualizacji metadanych pakietów" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "to może chwilę zająć" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "czynność" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "czynność przenoszenie pakietów zakończona" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "UWAGA" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Nie można wykonać porządkowania SPM, błąd" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "przenoszenie pakietów zakończone pomyślnie" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Przenoszenie elementu" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "do" @@ -363,7 +363,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Nie można zaktualizować pliku z pakietami zainstalowanymi przez SPM" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -437,7 +437,7 @@ msgid "Error calculating dependencies" msgstr "Błąd przy obliczaniu zależności" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "nieobsługiwana" @@ -590,8 +590,8 @@ msgstr "pobieranie pakietu" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "pakiet" @@ -660,8 +660,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "" @@ -671,9 +671,10 @@ msgstr "kopiuj" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "usuń" @@ -745,7 +746,7 @@ msgid "sync" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "usuwanie zakończone" @@ -762,7 +763,7 @@ msgstr "błędy przy wysyłaniu" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "powód" @@ -771,12 +772,12 @@ msgid "upload completed successfully" msgstr "wysyłanie zakończone pomyślnie" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "błędy przy pobieraniu" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "pobieranie ukończone pomyślnie" @@ -824,12 +825,12 @@ msgstr "Czy chcesz wykonać kroki powyżej?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -846,7 +847,8 @@ msgstr "Czy chcesz wykonać kroki powyżej?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nie" @@ -889,10 +891,10 @@ msgstr "to są przestarzałe pakiety" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -912,8 +914,8 @@ msgstr "lokalne usuwanie pakietów" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "usunięte" @@ -950,7 +952,7 @@ msgid "notice board upload success" msgstr "pomyślnie wysłano powiadomienie" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "Klucze dla repozytorium utraciły ważność" @@ -1116,31 +1118,26 @@ msgstr "Repozytorium zaktualizowane mimo to" msgid "package has no keyword set, it will be masked !" msgstr "pakiet nie ma ustawionego słowa kluczowego, więc będzie zamaskowane!" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" -"Interfejs serwera Entropy musi zostać uruchomiony przez użytkownika root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "repozytorium nieskonfigurowane" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "chronione ID repozytorium, nie można tego użyć, wybacz, facet..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "nieprawidłowa wersja repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "ustawianie domyślnej wartości na 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1153,84 +1150,84 @@ msgstr "ustawianie domyślnej wartości na 0" msgid "repository" msgstr "repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "synchronizowanie zestawów pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "nie można dopasować" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 msgid "initializing repository" msgstr "inicjowanie repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "czy na pewno chcesz zainicjować to repozytorium?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "wprowadzono nieprawidłowy tag" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "nic do zrobienia" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "sprawdzanie sumy kontrolnej pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "suma kontrolna nie zgadza się dla" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "zła suma md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "błąd przy pobieraniu pakietów z serwerów lustrzanych" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "pracowanie na gałęzi" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "aktualizowanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Przygotowanie do przeniesienia wybranych pakietów do" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Przygotowanie do skopiowania wybranych pakietów do" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Uwaga" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 #, fuzzy msgid "" "all old packages with conflicting scope will be removed from destination " @@ -1239,412 +1236,412 @@ msgstr "" "wszystkie stare pakiety w konfliktującym zakresie będą usunięte z położenia " "docelowego, jeśli nie zostały wstrzyknięte" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nowy tag" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "zależność wsteczna" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "zależność" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "przełączanie" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "nie można przełączyć, pakiet nieznaleziony, pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "przenoszenie pliku" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "ładowanie danych ze źródłowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "klucz GPG był dostępny w" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "wstrzykiwanie danych do docelowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "usuwanie wpisu ze źródłowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "pomyślnie obsłużono atom" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Wstrzykiwanie metadanych Entropy do zbudowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "Dla informacji: infrastruktura GPG nie mogła się załadować" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "wstrzykiwanie metadanych Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "wstrzykiwanie zakończone" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "usuwanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Sprawdzanie spójności wybranych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Wszystkie pakiety w repozytorium zostaną sprawdzone." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "To jest lista pakietów, które zostaną sprawdzone" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Praca na serwerze lustrzanym" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "sprawdzanie sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "weryfikacja sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NIEzdrowa" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Oto lista uszkodzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Serwer lustrzany" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statystyki" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Liczba sprawdzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Liczba zdrowych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Liczba uszkodzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokalne" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "sprawdzanie statusu" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "jest uszkodzony, zapisana suma kontrolna" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "sprawdzone pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "zdrowe pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "uszkodzone pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "pobrane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "pakiety, których się nie dało pobrać" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "podpisywanie pakietów dla repozytorium używając GPG" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Wszystkie brakujące pakiety w repozytorium zostaną pobrane." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG niedostępne" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Klucze niedostępne dla" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "podpisywanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Nieznany błąd podczas podpisywania pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "podpisane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "dostępne" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "wysłane/zignorowane" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Rozpoczynam pobieranie brakujących plików" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Szukanie brakujących/uszkodzonych plików na innym serwerze lustrzanym" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Binarne pakiety pomyślnie pobrane." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "To są pakiety, które nie mogły być znalezione online" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Nie zostaną sprawdzone" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Proszę ustawić swoją gałąź na" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "i ponowić" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "Kopiowanie repozytorium (jeśli nie istnieje)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Przełączanie pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "już w gałęzi" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "pętla migracji zakończona" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Wykonywanie sprawdzenia osieroconych pakietów SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Skanowanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "nie znaleziono" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Łańcuch pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Sprawdzanie" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Wykonywanie testu zależności" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Oto nieznalezione zależności:" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Potrzebne dla" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Wszystkie zależności są spełnione. Wszystko gra." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Lista uszkodzonych i dopasowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Zapisywanie wyników do tych plików" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "System jest zdrowy" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Dopasowywanie bibliotek z SPM, proszę czekać" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "To są dopasowane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Brak dopasowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Twoje domyślne repozytorium nie jest zainicjowane" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Czy chcesz zainicjować swoje domyślne repozytorium?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Kontynuacja z niezainicjowanym repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "Repozytorium Entropy jest już przez ciebie zablokowane :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "Blokowanie i synchronizowanie repozytorium Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Tabela statusu serwerów lustrzanych" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Odblokowany" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Zablokowany" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "nie można zablokować serwera lustrzanego" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 msgid "Repository is corrupted!" msgstr "Repozytorium jest uszkodzone!" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "indeksowanie repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "inicjowanie pustego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "Plik repozytorium Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "pomyślnie zainicjowano" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "dodawanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "dodano pakiet" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "wer." -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "ręczne zależności dla" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 msgid "these are the missing dependencies" msgstr "to są brakujące zależności" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 msgid "no missing dependencies !" msgstr "nie ma brakujących zależności!" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 msgid "Do you agree?" msgstr "Zgadzasz się?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1654,6 +1651,12 @@ msgstr "Zgadzasz się?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1661,142 +1664,142 @@ msgstr "Zgadzasz się?" msgid "Yes" msgstr "Tak" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "właścicielem nie jest użytkownik o UID i GID=0" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Zakończono blokowanie baz danych" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "wstrzyknięty pakiet, brak osobnego pakietu z danymi debugowania" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Złapano wyjątek, zamykanie zadań" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "repozytorium po stronie serwera" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "repozytorium społecznościowe" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Instancja interfejsu serwera Entropy w repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "bieżąca gałąź" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "typ" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Obecnie skonfigurowane repozytoria" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "Klucz GPG utracił ważność" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "proszę to koniecznie naprawić" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "GPG otrzymał nieoczekiwany błąd" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "pliki konfiguracyjne" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "sprawdzanie systemu" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "są pliki konfiguracyjne, które nie zostały jeszcze zaktualizowane" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "znaleziono dostępne dep_rewrites dla pakietu" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "dodane" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "zastąpione" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "Nie utworzono reguł zamiany zależności dla" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "zestawy" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "aktualizowanie zestawów pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "dodawanie zestawu pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "usuwanie zestawu pakietów" @@ -2327,7 +2330,8 @@ msgstr "Konfigurowanie" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Inny klient Entropy jest już uruchomiony." @@ -6405,6 +6409,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Czy chcesz, aby zostały obliczone zależności?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Czy chcesz je teraz usunąć?" @@ -6808,20 +6813,6 @@ msgstr "Data utworzenia" msgid "Expires on" msgstr "Traci ważność dnia" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "pokaż status repozytoriów" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "zainstalowane repozytorium pakietów" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "nie podano pakietów." @@ -6864,7 +6855,7 @@ msgstr "Nie podano prawidłowych repozytoriów." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Nie można dopasować" @@ -6974,12 +6965,12 @@ msgstr "Nie można nadpisać pliku, który już istnieje" msgid "Bumping Repository database" msgstr "" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Brak prawidłowych pakietów do aktualizacji." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Skanowanie bazy danych za różnicami" @@ -6987,7 +6978,7 @@ msgstr "Skanowanie bazy danych za różnicami" msgid "Invalid atom" msgstr "Nieprawidłowy atom" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Ni ma nicz do zrobbbienja" @@ -7007,7 +6998,7 @@ msgstr "Transformowanie z bazy danych" msgid "Database transform complete" msgstr "Transformowanie bazy danych zakończone" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "przestarzałe" @@ -7015,7 +7006,7 @@ msgstr "przestarzałe" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Więc, kochany, które pakiety chcesz usunąć?" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Usunąć tę paczkę?" @@ -7023,7 +7014,7 @@ msgstr "Usunąć tę paczkę?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Więc, kochany, które pakiety chcesz dodać?" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Dodać ten pakiet?" @@ -7031,59 +7022,59 @@ msgstr "Dodać ten pakiet?" msgid "These are the packages that would be added/updated" msgstr "To są pakiety, które mają być dodane/zaktualizowane" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "ostrzeżenie" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Czy chcesz je teraz spaczkować?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "w" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Kompresowanie pakietów" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Ignorowanie uszkodzonego wpisu SPM, proszę to zrekompilowac" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Nic do zrobienia, sprawdź później." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Obsłużone elementy" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "lokalna wersja" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "przechowywane pakiety" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "wysłane pakiety" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "podpisane pakiety" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "dodane" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "przełączanie" @@ -7108,6 +7099,81 @@ msgstr "zestaw pakietów nie został znaleziony" msgid "Nothing found" msgstr "Nic nie znaleziono" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "pokaż status repozytoriów" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "ta pomoc" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Usuwanie wybranych pakietów" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Instalowanie pakietu" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "został wstrzyknięty" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformowanie z bazy danych" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Transformowanie bazy danych zakończone" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Więc, kochany, które pakiety chcesz usunąć?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Dopasowania do usunięcia z bazy danych repozytorium" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Więc, kochany, które pakiety chcesz dodać?" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Będą dodane do systemowej bazy danych" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "zainstalowane repozytorium pakietów" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8589,15 +8655,6 @@ msgstr "przełącz jądro" msgid "list kernels" msgstr "wypisz jądra" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "ta pomoc" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "błąd gniazda" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = bez limitu; 100 = 100 kB/sek." @@ -9743,6 +9800,14 @@ msgstr "Magneto, aplet aktualizacji Entropy" msgid "_Load Package Manager" msgstr "Załaduj menadżera _pakietów" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "" +#~ "Interfejs serwera Entropy musi zostać uruchomiony przez użytkownika root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "błąd gniazda" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Nie można uzyskać blokady zasobów Entropy." @@ -10243,9 +10308,6 @@ msgstr "Załaduj menadżera _pakietów" #~ msgid "Matches to add from Spm" #~ msgstr "Dopasowania do dodania z SPM" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Dopasowania do usunięcia z bazy danych repozytorium" - #~ msgid "Matches to inject on repository database" #~ msgstr "Dopasowania do wstrzyknięcia do bazy danych repozytorium" diff --git a/misc/po/pt.po b/misc/po/pt.po index 515287f54..45fc91a4e 100644 --- a/misc/po/pt.po +++ b/misc/po/pt.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2011-08-02 09:58-0300 \n" "Last-Translator: albfneto \n" "Language-Team: Lucas Azevedo \n" @@ -12,36 +12,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Portuguese\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Sincronizando base de dados atual" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espere, por favor" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Removendo entrada" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Adicionando entrada" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Exportando tabela da base de dados" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Exportação da Base de Dados completada." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -50,68 +50,68 @@ msgstr "Exportação da Base de Dados completada." msgid "ATTENTION" msgstr "ATENÇÃO" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "Ocorreu erro Spm" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "Identificador único Spm não encontrado" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "Atualizando repositório de Metadados, por favor espere!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "Gerando Bibliotecas de Metadados, por favor espere!" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 msgid "Running packages metadata update" msgstr "Atualizando metadados dos pacotes" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "pode levar algum tempo" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "ação" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "ações de movimentação de pacote completadas" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "AVISO" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Não é possível executar limpeza do SPM, erro" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "movimentação de pacotes completada com sucesso" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Movendo entrada antiga" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "para" @@ -356,7 +356,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "O arquivo doa pacotes SPM instalados não atualizou" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -430,7 +430,7 @@ msgid "Error calculating dependencies" msgstr "Erro ao calcular dependências" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "não suportado" @@ -583,8 +583,8 @@ msgstr "recebendo pacote" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "pacote" @@ -653,8 +653,8 @@ msgstr "envio" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "recebimento" @@ -664,9 +664,10 @@ msgstr "copiar" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "remover" @@ -738,7 +739,7 @@ msgid "sync" msgstr "sincronizar" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "remoção completa" @@ -755,7 +756,7 @@ msgstr "erros no envio" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "razão" @@ -764,12 +765,12 @@ msgid "upload completed successfully" msgstr "envio completado com sucesso" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "erros de recebimento" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "recebimento completado com sucesso" @@ -817,12 +818,12 @@ msgstr "Você gostaria de executar os passos acima?" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -839,7 +840,8 @@ msgstr "Você gostaria de executar os passos acima?" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Não" @@ -882,10 +884,10 @@ msgstr "estes são os pacotes expirados" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -905,8 +907,8 @@ msgstr "removendo pacotes localmente" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "removido" @@ -943,7 +945,7 @@ msgid "notice board upload success" msgstr "sucesso no envio de quadro de avisos" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "As chaves do repositório expiraram" @@ -1108,30 +1110,26 @@ msgstr "De qualquer forma, Base de dados do repositório atualizada" msgid "package has no keyword set, it will be masked !" msgstr "O pacote não tem Palavra-Chave, ele será mascarado !" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Interface do Entropy Server deve ser executada como root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "repositório não configurado" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de repositório protegida, não posso usar isso, me desculpe..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 msgid "invalid repository revision" msgstr "Revisão do repositório inválida" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "padronizando para 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1144,84 +1142,84 @@ msgstr "padronizando para 0" msgid "repository" msgstr "repositório" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "sincronizando conjuntos de pacotes " -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "não é possível comparar" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 msgid "initializing repository" msgstr "Inicializando repositório" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "Você quer inicializar seu repositório padrão?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "tag especificada é inválida " -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "despejando de volta os pacotes selecionados dos ramos" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "nada para fazer" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "estes são os pacotes que vão ser despejados" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "checando hash do pacote" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "hash não corresponde para" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "md5 errado" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "erro ao receber pacotes dos espelhos" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "trabalhando no branch" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "atualizando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "pacote despejado" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 msgid "Cannot touch system repository" msgstr "Não foi possível criar a base de dados do sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Preparando para mover pacotes selecionados para" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Preparando para copiar pacotes selecionados para" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1229,412 +1227,412 @@ msgstr "" "todos pacotes antigos com escopo de conflito vão ser removidos do " "repositório destinatário à menos que injetados" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "nova tag" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "Dependências reversas" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "dependência" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "trocando" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "não é possível trocar, pacote não encontrado, pulando" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "movendo arquivo" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "carregando dados do repositório de origem" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "Chave GPG não disponível em " -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "injetando dados ao diretório de destino" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 msgid "removing entry from source repository" msgstr "removendo entrada da base de dados de origem" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "atom tratado com sucesso" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Injetando metadados do entropy nos pacotes construídos" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "As infraestruturas do lFYI e/ou do GPG falharam ao serem carregadas" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "injetando metadados do entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "injeção completa" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "removendo pacote" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Verificação de integridade dos pacotes selecionados" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Todos os pacotes no repositório vão ser checados." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Esta é a lista dos pacotes que vão ser checados" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Trabalhando com o espelho" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "checando hash" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "verificação do digest de " -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "NÃO está saudável" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Esta é a lista de pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Espelho" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Estatísticas" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Número de pacotes checados" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Número de pacotes saudáveis" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Número de pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "checando status de" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "está corrompido, soma de checagem foi armazenada" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "pacotes checados" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "pacotes saudáveis" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "pacotes recebidos" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "recebimentos que falharam" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "assinalando o GPG dos pacotes para o repositório" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "Todos os pacotes faltando serão baixados." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG não disponível" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Chaves não disponíveis para" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "Assinando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Erro desconhecido ao assinar pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "Pacotes assinados" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "disponível" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "upload/ignorado" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Iniciando o recebimento de arquivos em falta" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Buscando arquivos em falta/quebrados em outro espelho" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Pacotes binários recebidos com sucesso." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "Estes são os pacotes que não puderam ser achados online" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Eles não vão ser checados" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Por favor altere seu branch para" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "e tente novamente" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "Copiando base de dados (se não existir)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Trocando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Ignorando" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "já está no branch" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "laço de migração completado" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Executando teste de pacotes SPM órfãos" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Escaneando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "não foi mais achado" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "String de pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Checando" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Executando teste de dependências" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Estas dependências não foram encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requisitado por" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "por repositório" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Todas dependências foram satisfeitas. Tudo certo." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Lista de pacotes quebrados ou válidos" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Despejando resultados para o arquivo" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Sistema está saldável" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Comparando bibliotecas com Spm, por favor espere" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Estes são os pacotes correspondentes" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Nenhum pacote correspondente" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Seu repositório padrão não está inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Você quer inicializar seu repositório padrão?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Continuando com um repositório não inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "Repositório do Entropy já foi trancado por você :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "Trancando e Sincronizando base de dados do Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Tabela de status dos espelhos" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Destrancado" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Trancado" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "não é possível trancar espelho" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 msgid "Repository is corrupted!" msgstr "Repositório corrompido!" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 msgid "indexing repository" msgstr "Indexando repositório" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "Inicializando uma base de dados vazia" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 msgid "Entropy repository file" msgstr "Arquivo repositório do Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "inicializado com sucesso" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "adicionado pacote" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "pacote adicionado" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "dependências manuais para" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 msgid "these are the missing dependencies" msgstr "Estas dependências não foram encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 msgid "no missing dependencies !" msgstr "Não falta nenhuma dependência!" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 msgid "Do you agree?" msgstr "Você tem certeza ?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1644,6 +1642,12 @@ msgstr "Você tem certeza ?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1651,143 +1655,143 @@ msgstr "Você tem certeza ?" msgid "Yes" msgstr "Sim" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Resolvendo metadados" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Trancamento das bases de dados completo" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Excessão capturada, fechando tarefas" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "repositório do servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "repositório da comunidade" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Instância de Interface do Entropy Server no repositório" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "galho atual" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Repositórios atualmente configurados" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr " Chave GPG expirou" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "por favor, conserte" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "Erro inesperado no GPG" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "Saindo" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "arquivos de configuração" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "checando sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "existem arquivos de configuração que ainda não foram atualizados" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "Encontradas dependências disponívels, re-escritas para este pacote" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "adicionado" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "Substituido(a)" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "Regras de dependências menos rígidas" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "Conjuntos (Sets)" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 msgid "updating package sets" msgstr "atualizando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 msgid "adding package set" msgstr "adicionando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 msgid "removing package set" msgstr "removendo pacotes" @@ -2324,7 +2328,8 @@ msgstr "Configurando" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Outra instância do Entropy está em execução. " @@ -6396,6 +6401,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Você gostaria de continuar com os cálculos de dependências ?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Você gostaria de removê-los agora ?" @@ -6798,20 +6804,6 @@ msgstr "Data de cria;'ao" msgid "Expires on" msgstr "Expira em" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "mostrar status dos repositórios" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr " repositório dos pacotes Instalados" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "nenhum pacote especificado." @@ -6854,7 +6846,7 @@ msgstr "Nenhum repositório válido foi especificado." #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Não é possível comparar" @@ -6964,12 +6956,12 @@ msgstr "Não é possível sobrescrever arquivo já existente" msgid "Bumping Repository database" msgstr "Empurrando base de dados do Repositório" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Nenhum pacote válido para reempacotar." #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Escaneando base de dados, buscando diferenças" @@ -6977,7 +6969,7 @@ msgstr "Escaneando base de dados, buscando diferenças" msgid "Invalid atom" msgstr "Átomo inválido" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Nnadda pparaa fffazzeer" @@ -6997,7 +6989,7 @@ msgstr "Transformando base de dados" msgid "Database transform complete" msgstr "Transformação da base de dados completa" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "expirou" @@ -7005,7 +6997,7 @@ msgstr "expirou" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Quais Pacotes você deseja remover ?" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Remover este pacote?" @@ -7013,7 +7005,7 @@ msgstr "Remover este pacote?" msgid "So sweetheart, what packages do you want to add ?" msgstr "Quais Pacotes você deseja instalar ?" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Instala este pacote?" @@ -7021,56 +7013,56 @@ msgstr "Instala este pacote?" msgid "These are the packages that would be added/updated" msgstr "Estes são os pacotes que seriam instalados/atualizados" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "Aviso" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Você gostaria de empacotá-los agora ?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "dentro" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Compactando pacotes" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Ignorando entrada quebrada do Spm, por favor recompile-a" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Nada para fazer, verifique depois." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Entradas tratadas" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "revisão local" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "pacotes estocados" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "pacotes enviados" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 msgid "unstaged packages" msgstr "pacotes não classificados em \"Stages\"" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 msgid "add" msgstr "adiciona" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 msgid "switch injected" msgstr "trocando pacotes injetados" @@ -7093,6 +7085,81 @@ msgstr "conjunto de pacotes não encontrado" msgid "Nothing found" msgstr "Nada encontrado" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "mostrar status dos repositórios" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +msgid "this help" +msgstr "esta ajuda" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Removendo pacotes selecionados" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Backend inválido" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "foi injetado" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Transformando base de dados" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Transformação da base de dados completa" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Quais Pacotes você deseja remover ?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Correspondências à remover da base de dados do repositório" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Quais Pacotes você deseja instalar ?" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Eles seriam adicionados à base de dados do sistema" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr " repositório dos pacotes Instalados" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8575,14 +8642,6 @@ msgstr "Trocar Kernel" msgid "list kernels" msgstr "lista os kerneis" -#: ../../services/kernel-switcher:226 -msgid "this help" -msgstr "esta ajuda" - -#: ../../server/eit:355 -msgid "reset error" -msgstr "erro ao resetar" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = sem limite; 100 = 100kB/seg" @@ -9728,6 +9787,12 @@ msgstr "Notificador de Atualizações de Aplicativos Magneto" msgid "_Load Package Manager" msgstr "_Carregar Gerenciador de Pacotes" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Interface do Entropy Server deve ser executada como root" + +#~ msgid "reset error" +#~ msgstr "erro ao resetar" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Bloqueio de recursos do Entropy não adquirido" @@ -10370,9 +10435,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Matches to add from Spm" #~ msgstr "Correspondências à adicionar do Spm" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Correspondências à remover da base de dados do repositório" - #~ msgid "Matches to inject on repository database" #~ msgstr "Correspondências à injetar na base de dados do repositório" @@ -11567,9 +11629,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Show Queued Packages" #~ msgstr "Mostrar Pacotes Enfileirados" -#~ msgid "Invalid backend" -#~ msgstr "Backend inválido" - #~ msgid "" #~ "Would you like to look for packages that can be removed along with the " #~ "selected above ?" diff --git a/misc/po/ru.po b/misc/po/ru.po index afb9223c1..b9bbb4d14 100644 --- a/misc/po/ru.po +++ b/misc/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Entropy 0.98.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2009-09-21 02:01+0300\n" "Last-Translator: Maksim Belyanovskiy \n" "Language-Team: Maksim Belyanovskiy \n" @@ -18,37 +18,37 @@ msgstr "" "X-Poedit-Language: Russian\n" "X-Poedit-Country: RUSSIAN FEDERATION\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Синхронизация текущей базы данных" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "пожалуйста, подождите" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Удаление записи" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Добавление записи" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Экспорт таблицы базы данных" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 #, fuzzy msgid "Database Export complete." msgstr "Экспорт базы данных завершён." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,73 +57,73 @@ msgstr "Экспорт базы данных завершён." msgid "ATTENTION" msgstr "ВНИМАНИЕ" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 #, fuzzy msgid "Spm error occured" msgstr "зеркало разблокировано" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Путь к счётчику Spm не найден" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Генерация мета-информации. Пожалуйста, подождите." -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Генерация мета-информации. Пожалуйста, подождите." -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "принуждение к обновлению мета-информации пакетов" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "это может занять время" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "действие" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "совершение действий по перемещению пакета" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "ОСТОРОЖНО" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Невозможно запустить очистку SPM, ошибка" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "перемещения пакета успешно завершены" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Перемещение старой записи" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "на" @@ -373,7 +373,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Невозможно обновить файл установленных пакетов SPM" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -446,7 +446,7 @@ msgid "Error calculating dependencies" msgstr "Ошибка при подсчёте зависимостей" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "не поддерживается" @@ -604,8 +604,8 @@ msgstr "скачивание пакета" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "пакет" @@ -675,8 +675,8 @@ msgstr "закачка" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "скачать" @@ -686,9 +686,10 @@ msgstr "копировать" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "удалить" @@ -760,7 +761,7 @@ msgid "sync" msgstr "синхронизация" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "удаление завершено" @@ -777,7 +778,7 @@ msgstr "ошибки при закачке" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "причина" @@ -786,12 +787,12 @@ msgid "upload completed successfully" msgstr "закачка успешно завершена" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "ошибки загрузки" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "загрузка успешно завершена" @@ -839,12 +840,12 @@ msgstr "Желаете ли Вы применить вышеуказанные #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -861,7 +862,8 @@ msgstr "Желаете ли Вы применить вышеуказанные #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Нет" @@ -904,10 +906,10 @@ msgstr "здесь - устаревшие пакеты" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -927,8 +929,8 @@ msgstr "локальное удаление пакетов" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "удалить" @@ -969,7 +971,7 @@ msgid "notice board upload success" msgstr "доска уведомлений закачана успешно" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1154,32 +1156,28 @@ msgstr "База данных репозитория обновлена в лю msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "Серверный интерфейс Entropy должен быть запущен от root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "репозиторий не сконфигурирован" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "защищённый ID репозитория, невозможно это использовать, тут уж звиняйте..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Версия репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "установка по умолчанию на 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1192,88 +1190,88 @@ msgstr "установка по умолчанию на 0" msgid "repository" msgstr "репозиторий" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "конфигурированные наборы пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "невозможно подсчитать" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Инициализация базы данных Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Вы желаете инициализировать Ваш репозиторий по умолчанию ?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "выбран неправильный тэг" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "возвращение выбранных пакетов с веток" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "нечего делать" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "вот пакеты, которые будут возвращены" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "проверка хэша пакета" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "хэш не подсчитан для" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "неверная md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "ошибка при скачивании пакетов с зеркал" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "работа с веткой" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "обновление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "пакет возвращён" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Невозможно взаимодействовать с системной базой данных" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Подготовка к перемещению выбранных пакетов в" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Подготовка к копированию выбранных пакетов в" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Замечание" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1281,434 +1279,434 @@ msgstr "" "все старые пакеты с конфликтующими возможностями будут удалены из " "репозитория назначения ещё до добавления" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "новый тэг" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Обратные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "зависимость" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "переключение" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "невозможно подключить, пакет не найден, пропускем" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "переключение файла" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "загрузка информации из базы данных источника" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "введение информации в базу данных назначения" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "удаление записи из источника базы данных" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "успешно обслуженный атом" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Добавление мета-информации entropy в собранные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "добавление meta-информации entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "добавление завершено" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "удаление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Проверка целостности выбранных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Все пакеты в репозитории Entropy Packages будут проверены." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Вот список пакетов, которые будут проверены" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Работа на зеркале" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "проверка хэша" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "проверка списков" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "НЕ в порядке" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Здесь список испорченных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Зеркало" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Статистика" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Число проверенных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Число нормальных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Число испорченных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "локально" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "проверка статуса для" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "испорчен, накоплена контрольная сумма" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "проверены пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "нормальные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "испорченные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "скачанные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "проваленные загрузки" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "использование пакетов в репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Все пакеты в репозитории Entropy Packages будут проверены." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Соединение пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Соединение пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "Маскированный пакет" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "доступно" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "закачано/игнорируется" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Начало загрузки недостающих файлов" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Поиск недостающих/испорченных файлов на другом зеркале" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Бинарные пакеты скачаны успешно." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "А вот эти пакеты не могут быть найдены онлайн" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Они не будут проверены" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Пожалуйста, установите Вашу ветку на" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "и попробуйте" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Копирование базы данных (если не существует)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Переключение пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Игнорирование" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "уже на ветке" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "миграционный цикл завершён" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Запуск теста осиротевших пакетов SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Сканирование пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "больше ничего не найдено" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Строка пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Проверка" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Запускаем тест зависимостей" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Имеются ненайденные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Необходимо для" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "для репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Все зависимости удовлетворены. С чем и поздравляю." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Список испорченных и подсчитанных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Запись результатов в эти файлы" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "В системе все в порядке" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Подсчет библиотек через SPM, подождите немного" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Здесь - подсчитанные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Нет подсчитанных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Ваш репозиторий по умолчанию не инициализирован" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Вы желаете инициализировать Ваш репозиторий по умолчанию ?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Продолжаем с неинициализированным репозиторием" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "База данных Entropy уже заблокирована тобой :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Блокировка и синхронизация базы данных Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Таблица дополнительных репозиториев" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Разблокировано" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Заблокировано" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "невозможно заблокировать зеркало" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Каталог информации репозиториев испорчен" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Пропуск репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Инициализация пустой базы данных" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Центр управления репозиториями Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "успешно инициализировано" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "добавление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "добавлен пакет" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "версия" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "ручные зависимости для" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Имеются ненайденные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Недостающие зависимости не найдены." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Вы уверены?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1718,6 +1716,12 @@ msgstr "Вы уверены?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1725,149 +1729,149 @@ msgstr "Вы уверены?" msgid "Yes" msgstr "Да" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Определяется Meta-информация" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Блокировка баз данных завершена" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Обнаружено исключение, закрываем задания" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "репозиторий сервера" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "репозиторий сообщества" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Сессия Entropy Server Interface в репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "текущая ветка" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "тип" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Актуально сконфигурированные репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 #, fuzzy msgid "GPG key expired" msgstr "просрочено" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "пожалуйста, пофиксите" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "файлы конфигурации" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "проверка системы" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "имеются ещё не обновленные файлы конфигурации" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "К добавлению" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "делает строже правила касательно зависимостей" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "обновление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "добавление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "удаление пакета" @@ -2415,7 +2419,8 @@ msgstr "Конфигурирование" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -6662,6 +6667,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Желаете ли подсчитать зависимости?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Вы желаете удалить их сейчас ?" @@ -7091,20 +7097,6 @@ msgstr "Дата создания" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "показать статус репозиториев" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Установленные пакеты" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "ни одного пакета не выбрано." @@ -7149,7 +7141,7 @@ msgstr "Ни одного корректного репозитория не в #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Невозможно подсчитать" @@ -7269,12 +7261,12 @@ msgstr "Невозможно перезаписать уже существую msgid "Bumping Repository database" msgstr "Создание резервной копии базы данных репозитория" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Нет корректных пакетов к перепаковке" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Сканирование базы данных на различия" @@ -7283,7 +7275,7 @@ msgstr "Сканирование базы данных на различия" msgid "Invalid atom" msgstr "Неправильное действие." -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "Zarro thinggz totoo" @@ -7303,7 +7295,7 @@ msgstr "Трансформирование из базы данных" msgid "Database transform complete" msgstr "Трансформация базы данных завершена" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "просрочено" @@ -7312,7 +7304,7 @@ msgstr "просрочено" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Выберите, какой набор пакетов Вы хотите удалить" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 #, fuzzy msgid "Remove this package?" msgstr "Удалить пакеты" @@ -7322,7 +7314,7 @@ msgstr "Удалить пакеты" msgid "So sweetheart, what packages do you want to add ?" msgstr "Выберите, какой набор пакетов Вы хотите добавить" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 #, fuzzy msgid "Add this package?" msgstr "Маскировать данный пакет" @@ -7332,62 +7324,62 @@ msgstr "Маскировать данный пакет" msgid "These are the packages that would be added/updated" msgstr "Здесь перечислены пакеты, которые будут установлены/обновлены" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Осторожно" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Желаете ли запаковать их сейчас?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "внутри" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Сжатие пакетов" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Игнорируем испорченную запись Spm, будьте добры её перекомпилировать" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Делать нечего, проверьте позже." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "Обслуженные записи" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "версия" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "Маскированный пакет" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "скачанные пакеты" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "Маскированный пакет" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "К добавлению" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "переключение" @@ -7411,6 +7403,82 @@ msgstr "набор пакетов не найден" msgid "Nothing found" msgstr "Ничего не найдено" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "показать статус репозиториев" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "выдает этот мануал" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Удаление выбранных пакетов" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Установка пакета" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "добавлено" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Трансформирование из базы данных" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Трансформация базы данных завершена" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Выберите, какой набор пакетов Вы хотите удалить" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Подсчёт к удалению из базы данных репозитория" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Выберите, какой набор пакетов Вы хотите добавить" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Они будут добавлены в системную базу данных" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Установленные пакеты" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8932,16 +9000,6 @@ msgstr "Переключить репозиторий" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "выдает этот мануал" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "ошибка сокета" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = без лимита; 100 = 100Кб/сек" @@ -10102,6 +10160,13 @@ msgstr "Уведомитель об обновлениях приложений msgid "_Load Package Manager" msgstr "_Загрузить пакетный менеджер" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Серверный интерфейс Entropy должен быть запущен от root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "ошибка сокета" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Невозможно подтвердить блокировку ресурсов Entropy" @@ -10738,9 +10803,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Matches to add from Spm" #~ msgstr "Подсчёт к добавлению из SPM" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Подсчёт к удалению из базы данных репозитория" - #~ msgid "Matches to inject on repository database" #~ msgstr "Подсчёт к введению в базу данных репозитория" diff --git a/misc/po/sk.po b/misc/po/sk.po index d553f19e0..dabb83e4a 100644 --- a/misc/po/sk.po +++ b/misc/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2010-10-31 11:33+0100\n" "Last-Translator: Bystrík Pešl \n" "Language-Team: \n" @@ -16,36 +16,36 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Synchronizácia aktuálnej databázy" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "prosím čakajte" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Odstraňovanie položky" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Pridávanie položky" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Exportovanie tabuľky databázy" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Export datábazy dokončený." -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -54,69 +54,69 @@ msgstr "Export datábazy dokončený." msgid "ATTENTION" msgstr "POZOR" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "Vyskytla sa Spm chyba" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "MZB" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "môže to chvíľu trvať" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "operácia" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "Operácia presunu balíčku dokončená" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "VAROVANIE" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Nie je možne spustiť vyčistenie SPM, chyba" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "presuny balíčkov úspešne dokončené" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Moving old entry" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "do" @@ -371,7 +371,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -451,7 +451,7 @@ msgid "Error calculating dependencies" msgstr "Výpočet závislostí" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "" @@ -608,8 +608,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "balíček" @@ -678,8 +678,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "" @@ -689,9 +689,10 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "" @@ -763,7 +764,7 @@ msgid "sync" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "" @@ -780,7 +781,7 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "dôvod" @@ -789,12 +790,12 @@ msgid "upload completed successfully" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "" @@ -842,12 +843,12 @@ msgstr "" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -864,7 +865,8 @@ msgstr "" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" @@ -907,10 +909,10 @@ msgstr "" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -930,8 +932,8 @@ msgstr "" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "Vymazať" @@ -969,7 +971,7 @@ msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1145,31 +1147,27 @@ msgstr "Aktualizujú sa repozitáre" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "repozitár nie je nakonfigurovaný" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Revízia repozitáru" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1182,507 +1180,507 @@ msgstr "" msgid "repository" msgstr "repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Vy! Prečo chcete odstrániť hlavný repozitár?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "vstúpil do repozitára" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Poznámka" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "spätná závislosť" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "závislosť" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 msgid "loading data from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "GPG kĺúč bol dostupný v" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "GnuPG nie je dostupný" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "Nie sú dostupné kľúče pre" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "označenie balíčka" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "Neznáma chyba označenia balíčka" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "označené balíčky" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Copying repository (if not exists)" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Entropy správca repozitárov bol inicializovaný" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Odomknutý" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Zamknutý" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "nie je možné zamknúť zrkadlo" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "V repozitári" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Entropy Správca repozitárov" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "úspešne spustené" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Neboli nájdené žiadne chýbajúce závislosti." -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Neboli nájdené žiadne chýbajúce závislosti." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Ste si istí?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1692,6 +1690,12 @@ msgstr "Ste si istí?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1699,144 +1703,144 @@ msgstr "Ste si istí?" msgid "Yes" msgstr "Ano" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "Bude pridané" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "Pridávanie balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "synchronizácia sád balíčkov" @@ -2374,7 +2378,8 @@ msgstr "" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Práve beží iné Entropy." @@ -6438,6 +6443,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Chcete vypočítať závislosti?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Chcete ich odstrániť teraz?" @@ -6852,20 +6858,6 @@ msgstr "Dátum vydania" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "Stav Sabayon repozitárov" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Nainštalovaný repozitár balíčkov" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "" @@ -6910,7 +6902,7 @@ msgstr "Žiaden identifikátor repozitáru" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "" @@ -7022,12 +7014,12 @@ msgstr "" msgid "Bumping Repository database" msgstr "" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "" @@ -7035,7 +7027,7 @@ msgstr "" msgid "Invalid atom" msgstr "" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "" @@ -7055,7 +7047,7 @@ msgstr "" msgid "Database transform complete" msgstr "" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "" @@ -7063,7 +7055,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to remove ?" msgstr "" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "" @@ -7071,7 +7063,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to add ?" msgstr "" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "" @@ -7080,58 +7072,58 @@ msgstr "" msgid "These are the packages that would be added/updated" msgstr "Toto sú balíčky, ktoré by boli nainštalované/aktualizované" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "upozornenie" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "" -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "lokálna evízia" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "uložené balíčky" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "odovzdať balíčky" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "označené balíčky" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "Bude pridané" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 msgid "switch injected" msgstr "" @@ -7154,6 +7146,80 @@ msgstr "" msgid "Nothing found" msgstr "Nič nebolo nájdené" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "Stav Sabayon repozitárov" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "tento výstup" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Mazanie vybraných balíčkov" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Inštalácia balíčka" + +#: ../../server/eit/commands/commit.py:181 +msgid "These would be marked as injected" +msgstr "" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +msgid "Transforming" +msgstr "" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Obnovenie dokončené" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Vyberte systémový balíček, ktorý chcete odobrať" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Zmazaný repozitár" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Vyberte systémový balíček, ktorý chcete pridať" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Toto sú balíčky, ktoré by boli nainštalované/aktualizované" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Nainštalovaný repozitár balíčkov" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8645,16 +8711,6 @@ msgstr "" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "tento výstup" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "repozitár" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = bez limitu; 100 = 100kB/s" @@ -9799,6 +9855,10 @@ msgstr "Magneto oznamovač aktualizácií" msgid "_Load Package Manager" msgstr "Spustiť Správcu _Balíčkov" +#, fuzzy +#~ msgid "reset error" +#~ msgstr "repozitár" + #, fuzzy #~ msgid "Unknown error" #~ msgstr "Neznámy" diff --git a/misc/po/sv.po b/misc/po/sv.po index f5cf7af38..69180eb35 100644 --- a/misc/po/sv.po +++ b/misc/po/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: entropy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2010-08-09 22:18+0000\n" "Last-Translator: Patrik Karlsson \n" "Language-Team: Swedish \n" @@ -19,36 +19,36 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "vänligen vänta" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Tar bort post" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "" -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,69 +57,69 @@ msgstr "" msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 msgid "updating repository metadata layout, please wait!" msgstr "uppdaterar layout för förrådets metadata, vänligen vänta!" -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "" -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "tar bort paket + hash" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "till" @@ -370,7 +370,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -448,7 +448,7 @@ msgid "Error calculating dependencies" msgstr "Beräknar beroenden" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "" @@ -604,8 +604,8 @@ msgstr "hämtar paket" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "paket" @@ -675,8 +675,8 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "hämta" @@ -686,9 +686,10 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "ta bort" @@ -760,7 +761,7 @@ msgid "sync" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "" @@ -777,7 +778,7 @@ msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "orsak" @@ -786,12 +787,12 @@ msgid "upload completed successfully" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "" @@ -839,12 +840,12 @@ msgstr "" #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -861,7 +862,8 @@ msgstr "" #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nej" @@ -904,10 +906,10 @@ msgstr "" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -927,8 +929,8 @@ msgstr "tar bort paket lokalt" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 msgid "removed" msgstr "borttagna" @@ -965,7 +967,7 @@ msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1142,31 +1144,27 @@ msgstr "Förrådet uppdateras" msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Förrådsrevision" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1179,506 +1177,506 @@ msgstr "" msgid "repository" msgstr "förråd" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 msgid "syncing package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Indexerar förrådets metadata" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 msgid "do you really want to initialize this repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "fel md5" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "fel vid hämtning av paket från speglar" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "arbetar på gren" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Sortera efter förråd" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 msgid "reverse dependency" msgstr "omvända beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "flyttar fil" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "returnera par från alla förråd" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 msgid "GPG key was available in" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "tar bort post från källdatabasen" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "tar bort paket" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spegel" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Statistik" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokal" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 msgid "GnuPG not available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 msgid "Keys not available for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 msgid "signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 msgid "Unknown error signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 msgid "signed packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "skriv ut förrådsinformation (w/--quiet)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 msgid "Entropy repository is already locked by you :-)" msgstr "" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Förrådet uppdateras" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Indexerar förrådets metadata" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 msgid "Initializing an empty repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "från förråd" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Beräknar beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Beräknar beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Är du säker?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1688,6 +1686,12 @@ msgstr "Är du säker?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1695,143 +1699,143 @@ msgstr "Är du säker?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Undantag fångat, stänger uppgifter" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "typ" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 msgid "added" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "ersatte" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "tar bort paket" @@ -2366,7 +2370,8 @@ msgstr "" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -6401,6 +6406,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "" @@ -6798,20 +6804,6 @@ msgstr "Skapat" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "visa förrådsstatus" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "para ihop i inom installerade paket" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "" @@ -6855,7 +6847,7 @@ msgstr "Hämtar förrådsmetafil" #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "" @@ -6967,12 +6959,12 @@ msgstr "" msgid "Bumping Repository database" msgstr "" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "" @@ -6980,7 +6972,7 @@ msgstr "" msgid "Invalid atom" msgstr "" -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "" @@ -7000,7 +6992,7 @@ msgstr "" msgid "Database transform complete" msgstr "" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "" @@ -7008,7 +7000,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to remove ?" msgstr "" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "" @@ -7016,7 +7008,7 @@ msgstr "" msgid "So sweetheart, what packages do you want to add ?" msgstr "" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "" @@ -7025,57 +7017,57 @@ msgstr "" msgid "These are the packages that would be added/updated" msgstr "Dessa paket kommer att installeras/uppdateras" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 msgid "warning" msgstr "varning" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "i" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "" -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 msgid "local revision" msgstr "" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 msgid "stored packages" msgstr "lagrade paket" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 msgid "upload packages" msgstr "" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "lagrade paket" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 msgid "add" msgstr "" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 msgid "switch injected" msgstr "" @@ -7097,6 +7089,79 @@ msgstr "" msgid "Nothing found" msgstr "" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "visa förrådsstatus" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "den här utskriften" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Tar bort valda paket" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Installerar paket" + +#: ../../server/eit/commands/commit.py:181 +msgid "These would be marked as injected" +msgstr "" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +msgid "Transforming" +msgstr "" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Säkerhetskopiering slutförd" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Är du säker på att du vill ta bort detta?" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "ta bort förråd" + +#: ../../server/eit/commands/commit.py:260 +msgid "What packages do you want to add ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Dessa paket kommer att installeras/uppdateras" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "para ihop i inom installerade paket" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8549,16 +8614,6 @@ msgstr "" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "den här utskriften" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "förråd" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 msgid "0 = no limit; 100 = 100kB/sec" msgstr "0 = ingen begränsning; 100 = 100kB/sek" @@ -9699,6 +9754,10 @@ msgstr "Magneto - aviseraren för programuppdateringar" msgid "_Load Package Manager" msgstr "_Starta pakethanteraren" +#, fuzzy +#~ msgid "reset error" +#~ msgstr "förråd" + #, fuzzy #~ msgid "Unknown error" #~ msgstr "okänd orsak" diff --git a/misc/po/uk.po b/misc/po/uk.po index f2b9f975b..78362cf21 100644 --- a/misc/po/uk.po +++ b/misc/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: entropy_vitovtREV01\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-06 08:38+0200\n" +"POT-Creation-Date: 2011-10-09 17:09+0200\n" "PO-Revision-Date: 2010-01-15 21:04+0200\n" "Last-Translator: Grusha Linux Team\n" "Language-Team: \n" @@ -24,36 +24,36 @@ msgstr "" "X-Poedit-Country: Ukraine\n" "X-Generator: KBabel 1.11.4\n" -#: ../../libraries/entropy/db/__init__.py:5012 +#: ../../libraries/entropy/db/__init__.py:5024 msgid "Syncing current database" msgstr "Синхронізація поточної бази даних" -#: ../../libraries/entropy/db/__init__.py:5013 +#: ../../libraries/entropy/db/__init__.py:5025 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "зачекайте, будь-ласка" -#: ../../libraries/entropy/db/__init__.py:5028 +#: ../../libraries/entropy/db/__init__.py:5040 msgid "Removing entry" msgstr "Видалення запису" -#: ../../libraries/entropy/db/__init__.py:5047 +#: ../../libraries/entropy/db/__init__.py:5059 msgid "Adding entry" msgstr "Додавання запису" -#: ../../libraries/entropy/db/__init__.py:5124 +#: ../../libraries/entropy/db/__init__.py:5136 msgid "Exporting database table" msgstr "Експорт таблиці бази даних" -#: ../../libraries/entropy/db/__init__.py:5164 +#: ../../libraries/entropy/db/__init__.py:5176 msgid "Database Export complete." msgstr "Експорт бази даних завершено. " -#: ../../libraries/entropy/db/__init__.py:5807 -#: ../../libraries/entropy/db/__init__.py:5820 -#: ../../libraries/entropy/db/__init__.py:5974 -#: ../../libraries/entropy/db/__init__.py:6081 -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:5819 +#: ../../libraries/entropy/db/__init__.py:5832 +#: ../../libraries/entropy/db/__init__.py:5986 +#: ../../libraries/entropy/db/__init__.py:6093 +#: ../../libraries/entropy/db/__init__.py:6106 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -62,72 +62,72 @@ msgstr "Експорт бази даних завершено. " msgid "ATTENTION" msgstr "УВАГА" -#: ../../libraries/entropy/db/__init__.py:5808 +#: ../../libraries/entropy/db/__init__.py:5820 #, fuzzy msgid "Spm error occured" msgstr "дзеркало розблоковано" -#: ../../libraries/entropy/db/__init__.py:5821 +#: ../../libraries/entropy/db/__init__.py:5833 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Шлях до лічильника Spm не знайдено" -#: ../../libraries/entropy/db/__init__.py:5976 +#: ../../libraries/entropy/db/__init__.py:5988 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Генерація мета-інформації. Будь-ласка, зачекайте." -#: ../../libraries/entropy/db/__init__.py:6082 +#: ../../libraries/entropy/db/__init__.py:6094 msgid "generating provided_libs metadata, please wait!" msgstr "Генерація мета-інформації. Будь-ласка, зачекайте." -#: ../../libraries/entropy/db/skel.py:1630 -#: ../../libraries/entropy/db/skel.py:1977 +#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1979 msgid "SPM" msgstr "SPM" -#: ../../libraries/entropy/db/skel.py:1631 +#: ../../libraries/entropy/db/skel.py:1633 #, fuzzy msgid "Running packages metadata update" msgstr "примусове оновлення мета-інформації пакунків" -#: ../../libraries/entropy/db/skel.py:1632 +#: ../../libraries/entropy/db/skel.py:1634 msgid "it could take a while" msgstr "ця дія може тривати деякий час" -#: ../../libraries/entropy/db/skel.py:1652 -#: ../../libraries/entropy/db/skel.py:1677 -#: ../../libraries/entropy/db/skel.py:1700 +#: ../../libraries/entropy/db/skel.py:1654 +#: ../../libraries/entropy/db/skel.py:1679 +#: ../../libraries/entropy/db/skel.py:1702 msgid "ENTROPY" msgstr "ENTROPY" -#: ../../libraries/entropy/db/skel.py:1653 +#: ../../libraries/entropy/db/skel.py:1655 msgid "action" msgstr "дія" -#: ../../libraries/entropy/db/skel.py:1678 +#: ../../libraries/entropy/db/skel.py:1680 msgid "package move actions complete" msgstr "переміщення пакунку завершене" -#: ../../libraries/entropy/db/skel.py:1692 +#: ../../libraries/entropy/db/skel.py:1694 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2386 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2582 msgid "WARNING" msgstr "ОБЕРЕЖНО" -#: ../../libraries/entropy/db/skel.py:1693 +#: ../../libraries/entropy/db/skel.py:1695 msgid "Cannot run SPM cleanup, error" msgstr "Неможливо виконати очищення SPM, помилка" -#: ../../libraries/entropy/db/skel.py:1701 +#: ../../libraries/entropy/db/skel.py:1703 msgid "package moves completed successfully" msgstr "переміщення пакунку вдало завершені" -#: ../../libraries/entropy/db/skel.py:1978 +#: ../../libraries/entropy/db/skel.py:1980 msgid "Moving old entry" msgstr "Переміщення старого запису" -#: ../../libraries/entropy/db/skel.py:1980 +#: ../../libraries/entropy/db/skel.py:1982 #: ../../client/text_configuration.py:122 msgid "to" msgstr "на" @@ -383,7 +383,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1632 +#: ../../libraries/entropy/server/interfaces/main.py:1628 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -457,7 +457,7 @@ msgid "Error calculating dependencies" msgstr "Підрахунок залежностей" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2853 +#: ../../libraries/entropy/server/interfaces/main.py:2849 msgid "not supported" msgstr "не підтримується" @@ -614,8 +614,8 @@ msgstr "завантаження пакунку" #: ../../libraries/entropy/server/interfaces/mirrors.py:619 #: ../../libraries/entropy/server/interfaces/mirrors.py:634 #: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2869 -#: ../../libraries/entropy/server/interfaces/main.py:3012 +#: ../../libraries/entropy/server/interfaces/main.py:2865 +#: ../../libraries/entropy/server/interfaces/main.py:3008 msgid "package" msgstr "пакунок" @@ -685,8 +685,8 @@ msgstr "завантаження" #: ../../libraries/entropy/server/interfaces/mirrors.py:994 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3325 -#: ../../libraries/entropy/server/interfaces/main.py:4201 +#: ../../libraries/entropy/server/interfaces/main.py:3321 +#: ../../libraries/entropy/server/interfaces/main.py:4197 msgid "download" msgstr "завантажити" @@ -696,9 +696,10 @@ msgstr "копіювати" #: ../../libraries/entropy/server/interfaces/mirrors.py:1022 #: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2266 +#: ../../libraries/entropy/server/interfaces/main.py:2262 #: ../../libraries/entropy/client/interfaces/package.py:1581 #: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 +#: ../../server/eit/commands/status.py:161 msgid "remove" msgstr "видалити" @@ -770,7 +771,7 @@ msgid "sync" msgstr "синхронізація" #: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2741 +#: ../../libraries/entropy/server/interfaces/main.py:2737 msgid "removal complete" msgstr "видалення завершено" @@ -787,7 +788,7 @@ msgstr "помилки при завантаженні" #: ../../libraries/entropy/server/interfaces/mirrors.py:2233 #: ../../libraries/entropy/server/interfaces/db.py:737 #: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2007 +#: ../../libraries/entropy/server/interfaces/main.py:2003 msgid "reason" msgstr "причина" @@ -796,12 +797,12 @@ msgid "upload completed successfully" msgstr "завантаження вдало завершене" #: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2006 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "download errors" msgstr "помилки завантаження" #: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2024 +#: ../../libraries/entropy/server/interfaces/main.py:2020 msgid "download completed successfully" msgstr "завантаження вдало завершене" @@ -849,12 +850,12 @@ msgstr "Бажаєте застосувати вищезгадані кроки? #. masked ? #: ../../libraries/entropy/server/interfaces/mirrors.py:1804 #: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1746 -#: ../../libraries/entropy/server/interfaces/main.py:1916 -#: ../../libraries/entropy/server/interfaces/main.py:2324 -#: ../../libraries/entropy/server/interfaces/main.py:2796 -#: ../../libraries/entropy/server/interfaces/main.py:3337 -#: ../../libraries/entropy/server/interfaces/main.py:4004 +#: ../../libraries/entropy/server/interfaces/main.py:1742 +#: ../../libraries/entropy/server/interfaces/main.py:1912 +#: ../../libraries/entropy/server/interfaces/main.py:2320 +#: ../../libraries/entropy/server/interfaces/main.py:2792 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4000 #: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 @@ -871,7 +872,8 @@ msgstr "Бажаєте застосувати вищезгадані кроки? #: ../../server/server_key.py:224 ../../server/server_key.py:311 #: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 #: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../sulfur/src/sulfur/dialogs.py:1210 +#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Ni" @@ -914,10 +916,10 @@ msgstr "тут - застарілі пакунки" #. ask to continue #: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1915 -#: ../../libraries/entropy/server/interfaces/main.py:2323 -#: ../../libraries/entropy/server/interfaces/main.py:2795 -#: ../../libraries/entropy/server/interfaces/main.py:3336 +#: ../../libraries/entropy/server/interfaces/main.py:1911 +#: ../../libraries/entropy/server/interfaces/main.py:2319 +#: ../../libraries/entropy/server/interfaces/main.py:2791 +#: ../../libraries/entropy/server/interfaces/main.py:3332 #: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 #: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 msgid "Would you like to continue ?" @@ -937,8 +939,8 @@ msgstr "локальне видалення пакунків" #. this means that user is asking to remove dep_pattern #: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5850 -#: ../../libraries/entropy/server/interfaces/main.py:5952 +#: ../../libraries/entropy/server/interfaces/main.py:5849 +#: ../../libraries/entropy/server/interfaces/main.py:5951 #, fuzzy msgid "removed" msgstr "видалити" @@ -979,7 +981,7 @@ msgid "notice board upload success" msgstr "дошка повідомлень вдало завантажена" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3159 +#: ../../libraries/entropy/server/interfaces/main.py:3155 msgid "Keys for repository are expired" msgstr "" @@ -1164,34 +1166,28 @@ msgstr "База даних репозиторію оновлена в будь- msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1075 -msgid "Entropy Server interface must be run as root" -msgstr "" -"Серверний інтерфейс Entropy повинен бути виконаний від імені " -"суперкористувача root" - -#: ../../libraries/entropy/server/interfaces/main.py:1136 -#: ../../libraries/entropy/server/interfaces/main.py:3963 +#: ../../libraries/entropy/server/interfaces/main.py:1132 +#: ../../libraries/entropy/server/interfaces/main.py:3959 msgid "repository not configured" msgstr "репозиторій не налаштовано" -#: ../../libraries/entropy/server/interfaces/main.py:1142 +#: ../../libraries/entropy/server/interfaces/main.py:1138 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "ID захищеного репозиторію, його неможливо використовувати, звиняйте, куме..." -#: ../../libraries/entropy/server/interfaces/main.py:1492 +#: ../../libraries/entropy/server/interfaces/main.py:1488 #, fuzzy msgid "invalid repository revision" msgstr "Перевірка репозиторію" -#: ../../libraries/entropy/server/interfaces/main.py:1494 +#: ../../libraries/entropy/server/interfaces/main.py:1490 msgid "defaulting to 0" msgstr "встановлено за замовчуванням на 0" -#: ../../libraries/entropy/server/interfaces/main.py:1587 -#: ../../libraries/entropy/server/interfaces/main.py:4199 -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:1583 +#: ../../libraries/entropy/server/interfaces/main.py:4195 +#: ../../libraries/entropy/server/interfaces/main.py:4427 #: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 #: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 #: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 @@ -1204,88 +1200,88 @@ msgstr "встановлено за замовчуванням на 0" msgid "repository" msgstr "репозиторій" -#: ../../libraries/entropy/server/interfaces/main.py:1588 +#: ../../libraries/entropy/server/interfaces/main.py:1584 #, fuzzy msgid "syncing package sets" msgstr "налаштовані набори пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:1633 +#: ../../libraries/entropy/server/interfaces/main.py:1629 msgid "cannot match" msgstr "неможливо співставити" -#: ../../libraries/entropy/server/interfaces/main.py:1733 +#: ../../libraries/entropy/server/interfaces/main.py:1729 #, fuzzy msgid "initializing repository" msgstr "Ініціалізація бази даних Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1743 +#: ../../libraries/entropy/server/interfaces/main.py:1739 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Ви бажаєте ініціалізувати Ваш репозиторій за замовчуванням?" -#: ../../libraries/entropy/server/interfaces/main.py:1784 +#: ../../libraries/entropy/server/interfaces/main.py:1780 msgid "Invalid tag specified" msgstr "обраний невірний тег" -#: ../../libraries/entropy/server/interfaces/main.py:1830 +#: ../../libraries/entropy/server/interfaces/main.py:1826 msgid "flushing back selected packages from branches" msgstr "повернення обраних пакунків з гілок" -#: ../../libraries/entropy/server/interfaces/main.py:1856 +#: ../../libraries/entropy/server/interfaces/main.py:1852 msgid "nothing to do" msgstr "більше немає чого робити" -#: ../../libraries/entropy/server/interfaces/main.py:1880 +#: ../../libraries/entropy/server/interfaces/main.py:1876 msgid "these are the packages that will be flushed" msgstr "ось пакунки, які будуть повернуті" -#: ../../libraries/entropy/server/interfaces/main.py:1965 +#: ../../libraries/entropy/server/interfaces/main.py:1961 msgid "checking package hash" msgstr "перевірка хеша пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:1984 +#: ../../libraries/entropy/server/interfaces/main.py:1980 msgid "hash does not match for" msgstr "хеш не співпадає для" -#: ../../libraries/entropy/server/interfaces/main.py:1994 +#: ../../libraries/entropy/server/interfaces/main.py:1990 msgid "wrong md5" msgstr "невірна md5-сума" -#: ../../libraries/entropy/server/interfaces/main.py:2038 +#: ../../libraries/entropy/server/interfaces/main.py:2034 msgid "error downloading packages from mirrors" msgstr "помилка при завантаженні пакунків з дзеркал" -#: ../../libraries/entropy/server/interfaces/main.py:2053 +#: ../../libraries/entropy/server/interfaces/main.py:2049 msgid "working on branch" msgstr "робота з гілкою" -#: ../../libraries/entropy/server/interfaces/main.py:2069 +#: ../../libraries/entropy/server/interfaces/main.py:2065 msgid "updating package" msgstr "оновлення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:2106 +#: ../../libraries/entropy/server/interfaces/main.py:2102 msgid "package flushed" msgstr "пакунок повернуто" -#: ../../libraries/entropy/server/interfaces/main.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:2182 #, fuzzy msgid "Cannot touch system repository" msgstr "Неможливо взаємодіяти з системною базою даних" -#: ../../libraries/entropy/server/interfaces/main.py:2201 +#: ../../libraries/entropy/server/interfaces/main.py:2197 msgid "Preparing to move selected packages to" msgstr "Підготовка до переміщення обраних пакунків у" -#: ../../libraries/entropy/server/interfaces/main.py:2203 +#: ../../libraries/entropy/server/interfaces/main.py:2199 msgid "Preparing to copy selected packages to" msgstr "Підготовка до копіювання обраних пакунків у" -#: ../../libraries/entropy/server/interfaces/main.py:2215 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Зауваження" -#: ../../libraries/entropy/server/interfaces/main.py:2216 +#: ../../libraries/entropy/server/interfaces/main.py:2212 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1293,434 +1289,434 @@ msgstr "" "всі старі пакунки з конфліктуючими можливостями будуть видалені зрепозиторію " "призначення ще перед додаванням" -#: ../../libraries/entropy/server/interfaces/main.py:2226 +#: ../../libraries/entropy/server/interfaces/main.py:2222 msgid "new tag" msgstr "новий тег" -#: ../../libraries/entropy/server/interfaces/main.py:2298 +#: ../../libraries/entropy/server/interfaces/main.py:2294 #, fuzzy msgid "reverse dependency" msgstr "Зворотні залежності" -#: ../../libraries/entropy/server/interfaces/main.py:2309 +#: ../../libraries/entropy/server/interfaces/main.py:2305 msgid "dependency" msgstr "залежність" -#: ../../libraries/entropy/server/interfaces/main.py:2341 +#: ../../libraries/entropy/server/interfaces/main.py:2337 msgid "switching" msgstr "переключення" -#: ../../libraries/entropy/server/interfaces/main.py:2361 +#: ../../libraries/entropy/server/interfaces/main.py:2357 msgid "cannot switch, package not found, skipping" msgstr "неможливо переключити, пакунок не знайдений, пропускаємо" -#: ../../libraries/entropy/server/interfaces/main.py:2447 +#: ../../libraries/entropy/server/interfaces/main.py:2443 msgid "moving file" msgstr "переміщення файлу" -#: ../../libraries/entropy/server/interfaces/main.py:2463 +#: ../../libraries/entropy/server/interfaces/main.py:2459 #, fuzzy msgid "loading data from source repository" msgstr "завантаження інформації з бази даних джерела" -#: ../../libraries/entropy/server/interfaces/main.py:2493 +#: ../../libraries/entropy/server/interfaces/main.py:2489 #, fuzzy msgid "GPG key was available in" msgstr "найновіша версія -" -#: ../../libraries/entropy/server/interfaces/main.py:2518 +#: ../../libraries/entropy/server/interfaces/main.py:2514 #, fuzzy msgid "injecting data to destination repository" msgstr "введення інформації в базу даних призначення" -#: ../../libraries/entropy/server/interfaces/main.py:2538 +#: ../../libraries/entropy/server/interfaces/main.py:2534 #, fuzzy msgid "removing entry from source repository" msgstr "видалення запису з джерела бази даних" -#: ../../libraries/entropy/server/interfaces/main.py:2556 +#: ../../libraries/entropy/server/interfaces/main.py:2552 msgid "successfully handled atom" msgstr "вдало оброблений атом" -#: ../../libraries/entropy/server/interfaces/main.py:2583 +#: ../../libraries/entropy/server/interfaces/main.py:2579 msgid "Injecting entropy metadata into built packages" msgstr "Додавання мета-інформації entropy в зібрані пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:2599 +#: ../../libraries/entropy/server/interfaces/main.py:2595 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2653 +#: ../../libraries/entropy/server/interfaces/main.py:2649 msgid "injecting entropy metadata" msgstr "додавання мета-інформації entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2701 +#: ../../libraries/entropy/server/interfaces/main.py:2697 msgid "injection complete" msgstr "додавання завершено" -#: ../../libraries/entropy/server/interfaces/main.py:2728 +#: ../../libraries/entropy/server/interfaces/main.py:2724 msgid "removing package" msgstr "видалення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:2753 -#: ../../libraries/entropy/server/interfaces/main.py:2956 +#: ../../libraries/entropy/server/interfaces/main.py:2749 +#: ../../libraries/entropy/server/interfaces/main.py:2952 msgid "Integrity verification of the selected packages" msgstr "Перевірка цілісності обраних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2768 -#: ../../libraries/entropy/server/interfaces/main.py:2967 +#: ../../libraries/entropy/server/interfaces/main.py:2764 +#: ../../libraries/entropy/server/interfaces/main.py:2963 msgid "All the packages in repository will be checked." msgstr "Всі пакунки в репозиторії Entropy Packages будуть перевірені." -#: ../../libraries/entropy/server/interfaces/main.py:2775 +#: ../../libraries/entropy/server/interfaces/main.py:2771 msgid "This is the list of the packages that would be checked" msgstr "Ось перелік пакунків, які будуть перевірені" -#: ../../libraries/entropy/server/interfaces/main.py:2809 +#: ../../libraries/entropy/server/interfaces/main.py:2805 msgid "Working on mirror" msgstr "Робота з дзеркалом" -#: ../../libraries/entropy/server/interfaces/main.py:2836 +#: ../../libraries/entropy/server/interfaces/main.py:2832 msgid "checking hash" msgstr "перевірка хеша" -#: ../../libraries/entropy/server/interfaces/main.py:2851 +#: ../../libraries/entropy/server/interfaces/main.py:2847 msgid "digest verification of" msgstr "перевірка списків" -#: ../../libraries/entropy/server/interfaces/main.py:2871 +#: ../../libraries/entropy/server/interfaces/main.py:2867 msgid "NOT healthy" msgstr "НЕ все гаразд" -#: ../../libraries/entropy/server/interfaces/main.py:2884 -#: ../../libraries/entropy/server/interfaces/main.py:3024 +#: ../../libraries/entropy/server/interfaces/main.py:2880 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "This is the list of broken packages" msgstr "Ось перелік зламаних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2893 +#: ../../libraries/entropy/server/interfaces/main.py:2889 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Дзеркало" -#: ../../libraries/entropy/server/interfaces/main.py:2912 -#: ../../server/server_reagent.py:1076 +#: ../../libraries/entropy/server/interfaces/main.py:2908 +#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 msgid "Statistics" msgstr "Статистика" -#: ../../libraries/entropy/server/interfaces/main.py:2921 +#: ../../libraries/entropy/server/interfaces/main.py:2917 msgid "Number of checked packages" msgstr "Кількість перевірених пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2931 +#: ../../libraries/entropy/server/interfaces/main.py:2927 msgid "Number of healthy packages" msgstr "Число нормальних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2941 +#: ../../libraries/entropy/server/interfaces/main.py:2937 msgid "Number of broken packages" msgstr "Число зламаних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2955 -#: ../../libraries/entropy/server/interfaces/main.py:3112 +#: ../../libraries/entropy/server/interfaces/main.py:2951 +#: ../../libraries/entropy/server/interfaces/main.py:3108 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "локально" -#: ../../libraries/entropy/server/interfaces/main.py:2992 +#: ../../libraries/entropy/server/interfaces/main.py:2988 msgid "checking status of" msgstr "перевірка статусу для" -#: ../../libraries/entropy/server/interfaces/main.py:3014 +#: ../../libraries/entropy/server/interfaces/main.py:3010 msgid "is corrupted, stored checksum" msgstr "зіпсований, збережена контрольна сума" -#: ../../libraries/entropy/server/interfaces/main.py:3051 +#: ../../libraries/entropy/server/interfaces/main.py:3047 msgid "checked packages" msgstr "перевірені пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3061 +#: ../../libraries/entropy/server/interfaces/main.py:3057 msgid "healthy packages" msgstr "нормальні пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3071 -#: ../../libraries/entropy/server/interfaces/main.py:3253 +#: ../../libraries/entropy/server/interfaces/main.py:3067 +#: ../../libraries/entropy/server/interfaces/main.py:3249 msgid "broken packages" msgstr "зламані пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3081 -#: ../../libraries/entropy/server/interfaces/main.py:3263 +#: ../../libraries/entropy/server/interfaces/main.py:3077 +#: ../../libraries/entropy/server/interfaces/main.py:3259 msgid "downloaded packages" msgstr "завантажені пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3091 -#: ../../libraries/entropy/server/interfaces/main.py:3273 +#: ../../libraries/entropy/server/interfaces/main.py:3087 +#: ../../libraries/entropy/server/interfaces/main.py:3269 msgid "failed downloads" msgstr "невдалі завантаження" -#: ../../libraries/entropy/server/interfaces/main.py:3113 +#: ../../libraries/entropy/server/interfaces/main.py:3109 #, fuzzy msgid "GPG signing packages for repository" msgstr "використання пакунків у репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:3125 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Всі пакунки в репозиторії Entropy Packages будуть перевірені." -#: ../../libraries/entropy/server/interfaces/main.py:3141 +#: ../../libraries/entropy/server/interfaces/main.py:3137 #: ../../server/server_key.py:69 #, fuzzy msgid "GnuPG not available" msgstr "недоступний" -#: ../../libraries/entropy/server/interfaces/main.py:3167 +#: ../../libraries/entropy/server/interfaces/main.py:3163 #, fuzzy msgid "Keys not available for" msgstr "недоступний" -#: ../../libraries/entropy/server/interfaces/main.py:3198 +#: ../../libraries/entropy/server/interfaces/main.py:3194 #, fuzzy msgid "signing package" msgstr "Об'єднання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3213 +#: ../../libraries/entropy/server/interfaces/main.py:3209 #, fuzzy msgid "Unknown error signing package" msgstr "Об'єднання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3243 +#: ../../libraries/entropy/server/interfaces/main.py:3239 #, fuzzy msgid "signed packages" msgstr "замаскований пакунок" -#: ../../libraries/entropy/server/interfaces/main.py:3302 +#: ../../libraries/entropy/server/interfaces/main.py:3298 msgid "available" msgstr "наявно" -#: ../../libraries/entropy/server/interfaces/main.py:3314 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "upload/ignored" msgstr "завантажено/пропущено" -#: ../../libraries/entropy/server/interfaces/main.py:3349 +#: ../../libraries/entropy/server/interfaces/main.py:3345 msgid "Starting to download missing files" msgstr "Початок завантаження відсутніх файлів" -#: ../../libraries/entropy/server/interfaces/main.py:3360 +#: ../../libraries/entropy/server/interfaces/main.py:3356 msgid "Searching missing/broken files on another mirror" msgstr "Пошук відсутніх/зламаних файлів на іншому дзеркалі" -#: ../../libraries/entropy/server/interfaces/main.py:3381 +#: ../../libraries/entropy/server/interfaces/main.py:3377 msgid "Binary packages downloaded successfully." msgstr "Бінарні пакунки вдало завантажено." -#: ../../libraries/entropy/server/interfaces/main.py:3390 +#: ../../libraries/entropy/server/interfaces/main.py:3386 msgid "These are the packages that cannot be found online" msgstr "А ось ці пакунки не можуть бути знайдені в інтернеті" -#: ../../libraries/entropy/server/interfaces/main.py:3406 +#: ../../libraries/entropy/server/interfaces/main.py:3402 msgid "They won't be checked" msgstr "Вони не будуть перевірені" -#: ../../libraries/entropy/server/interfaces/main.py:3420 +#: ../../libraries/entropy/server/interfaces/main.py:3416 msgid "Please setup your branch to" msgstr "Встановіть Вашу гілку на" -#: ../../libraries/entropy/server/interfaces/main.py:3422 +#: ../../libraries/entropy/server/interfaces/main.py:3418 msgid "and retry" msgstr "і спробуйте" -#: ../../libraries/entropy/server/interfaces/main.py:3432 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Копіювання бази даних (якщо копії ще не існує)" -#: ../../libraries/entropy/server/interfaces/main.py:3465 +#: ../../libraries/entropy/server/interfaces/main.py:3461 msgid "Switching packages" msgstr "Перемикання пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3500 +#: ../../libraries/entropy/server/interfaces/main.py:3496 msgid "Ignoring" msgstr "Пропускаємо" -#: ../../libraries/entropy/server/interfaces/main.py:3502 +#: ../../libraries/entropy/server/interfaces/main.py:3498 msgid "already in branch" msgstr "вже на гілці" -#: ../../libraries/entropy/server/interfaces/main.py:3536 +#: ../../libraries/entropy/server/interfaces/main.py:3532 msgid "migration loop completed" msgstr "міграційний цикл завершений" -#: ../../libraries/entropy/server/interfaces/main.py:3554 +#: ../../libraries/entropy/server/interfaces/main.py:3550 msgid "Running orphaned SPM packages test" msgstr "Виконання тесту осиротілих пакунків SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3570 +#: ../../libraries/entropy/server/interfaces/main.py:3566 msgid "Scanning package" msgstr "Сканування пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3596 +#: ../../libraries/entropy/server/interfaces/main.py:3592 msgid "not found anymore" msgstr "більше нічого не знайдено" -#: ../../libraries/entropy/server/interfaces/main.py:3608 -#: ../../libraries/entropy/server/interfaces/main.py:3883 +#: ../../libraries/entropy/server/interfaces/main.py:3604 +#: ../../libraries/entropy/server/interfaces/main.py:3879 msgid "Packages string" msgstr "Рядок пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3639 +#: ../../libraries/entropy/server/interfaces/main.py:3635 msgid "Checking" msgstr "Перевірка" -#: ../../libraries/entropy/server/interfaces/main.py:3704 +#: ../../libraries/entropy/server/interfaces/main.py:3700 msgid "Running dependencies test" msgstr "Виконуємо тест залежностей" -#: ../../libraries/entropy/server/interfaces/main.py:3736 +#: ../../libraries/entropy/server/interfaces/main.py:3732 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Є незнайдені залежності" -#: ../../libraries/entropy/server/interfaces/main.py:3743 +#: ../../libraries/entropy/server/interfaces/main.py:3739 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Необхідно для" -#: ../../libraries/entropy/server/interfaces/main.py:3761 +#: ../../libraries/entropy/server/interfaces/main.py:3757 msgid "by repo" msgstr "для репозиторію" -#: ../../libraries/entropy/server/interfaces/main.py:3771 +#: ../../libraries/entropy/server/interfaces/main.py:3767 msgid "Every dependency is satisfied. It's all fine." msgstr "Всі залежності задоволені. З чим і вітаю." -#: ../../libraries/entropy/server/interfaces/main.py:3797 +#: ../../libraries/entropy/server/interfaces/main.py:3793 msgid "Broken and matched packages list" msgstr "Перелік зламаних та підходящих пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3799 +#: ../../libraries/entropy/server/interfaces/main.py:3795 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Запис результатів у ці файли" -#: ../../libraries/entropy/server/interfaces/main.py:3825 +#: ../../libraries/entropy/server/interfaces/main.py:3821 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "З системою все гаразд" -#: ../../libraries/entropy/server/interfaces/main.py:3834 +#: ../../libraries/entropy/server/interfaces/main.py:3830 msgid "Matching libraries with Spm, please wait" msgstr "Порівняння бібліотек з SPM, почекайте" -#: ../../libraries/entropy/server/interfaces/main.py:3848 +#: ../../libraries/entropy/server/interfaces/main.py:3844 msgid "These are the matched packages" msgstr "Ось підходящі пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3892 +#: ../../libraries/entropy/server/interfaces/main.py:3888 msgid "No matched packages" msgstr "Немає підходящих пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3991 +#: ../../libraries/entropy/server/interfaces/main.py:3987 msgid "Your default repository is not initialized" msgstr "Ваш репозиторій за замовчуванням не ініціалізовано" -#: ../../libraries/entropy/server/interfaces/main.py:4003 +#: ../../libraries/entropy/server/interfaces/main.py:3999 msgid "Do you want to initialize your default repository ?" msgstr "Ви бажаєте ініціалізувати Ваш репозиторій за замовчуванням?" -#: ../../libraries/entropy/server/interfaces/main.py:4006 +#: ../../libraries/entropy/server/interfaces/main.py:4002 msgid "Continuing with an uninitialized repository" msgstr "Продовжуємо з неініціалізованим репозиторієм" -#: ../../libraries/entropy/server/interfaces/main.py:4158 +#: ../../libraries/entropy/server/interfaces/main.py:4154 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "База даних Entropy вже заблокована тобою :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4165 +#: ../../libraries/entropy/server/interfaces/main.py:4161 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Блокування та синхронізація бази даних Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4179 +#: ../../libraries/entropy/server/interfaces/main.py:4175 #: ../../server/server_activator.py:508 msgid "Mirrors status table" msgstr "Таблиця додаткових репозиторіїв" -#: ../../libraries/entropy/server/interfaces/main.py:4188 -#: ../../libraries/entropy/server/interfaces/main.py:4191 +#: ../../libraries/entropy/server/interfaces/main.py:4184 +#: ../../libraries/entropy/server/interfaces/main.py:4187 #: ../../server/server_activator.py:514 ../../server/server_activator.py:518 msgid "Unlocked" msgstr "Розблоковано" -#: ../../libraries/entropy/server/interfaces/main.py:4190 -#: ../../libraries/entropy/server/interfaces/main.py:4193 +#: ../../libraries/entropy/server/interfaces/main.py:4186 +#: ../../libraries/entropy/server/interfaces/main.py:4189 #: ../../server/server_activator.py:512 ../../server/server_activator.py:516 msgid "Locked" msgstr "Заблоковано" -#: ../../libraries/entropy/server/interfaces/main.py:4210 +#: ../../libraries/entropy/server/interfaces/main.py:4206 msgid "cannot lock mirror" msgstr "неможливо заблокувати дзеркало" -#: ../../libraries/entropy/server/interfaces/main.py:4415 +#: ../../libraries/entropy/server/interfaces/main.py:4414 #, fuzzy msgid "Repository is corrupted!" msgstr "Каталог інформації репозиторіїв зіпсований" -#: ../../libraries/entropy/server/interfaces/main.py:4429 +#: ../../libraries/entropy/server/interfaces/main.py:4428 #, fuzzy msgid "indexing repository" msgstr "Пропускаю репозиторій" -#: ../../libraries/entropy/server/interfaces/main.py:4465 +#: ../../libraries/entropy/server/interfaces/main.py:4464 #, fuzzy msgid "Initializing an empty repository" msgstr "Ініціювання порожньої бази даних" -#: ../../libraries/entropy/server/interfaces/main.py:4478 +#: ../../libraries/entropy/server/interfaces/main.py:4477 #, fuzzy msgid "Entropy repository file" msgstr "Центр керування репозиторіями Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4480 +#: ../../libraries/entropy/server/interfaces/main.py:4479 msgid "successfully initialized" msgstr "вдало ініціалізований" -#: ../../libraries/entropy/server/interfaces/main.py:4562 -#: ../../libraries/entropy/server/interfaces/main.py:5311 +#: ../../libraries/entropy/server/interfaces/main.py:4561 +#: ../../libraries/entropy/server/interfaces/main.py:5310 msgid "adding package" msgstr "додавання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:4696 +#: ../../libraries/entropy/server/interfaces/main.py:4695 msgid "added package" msgstr "додано пакунок" -#: ../../libraries/entropy/server/interfaces/main.py:4698 +#: ../../libraries/entropy/server/interfaces/main.py:4697 msgid "rev" msgstr "версія" -#: ../../libraries/entropy/server/interfaces/main.py:4712 +#: ../../libraries/entropy/server/interfaces/main.py:4711 msgid "manual dependencies for" msgstr "ручні залежності для" -#: ../../libraries/entropy/server/interfaces/main.py:4793 +#: ../../libraries/entropy/server/interfaces/main.py:4792 #, fuzzy msgid "these are the missing dependencies" msgstr "Є незнайдені залежності" -#: ../../libraries/entropy/server/interfaces/main.py:4949 +#: ../../libraries/entropy/server/interfaces/main.py:4948 #, fuzzy msgid "no missing dependencies !" msgstr "Відсутних залежностей не виявлено." -#: ../../libraries/entropy/server/interfaces/main.py:4964 +#: ../../libraries/entropy/server/interfaces/main.py:4963 #, fuzzy msgid "Do you agree?" msgstr "Ви впевнені?" -#: ../../libraries/entropy/server/interfaces/main.py:4966 -#: ../../libraries/entropy/server/interfaces/main.py:4972 +#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4971 #: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 @@ -1730,6 +1726,12 @@ msgstr "Ви впевнені?" #: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 #: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 #: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 +#: ../../server/eit/commands/commit.py:193 +#: ../../server/eit/commands/commit.py:195 +#: ../../server/eit/commands/commit.py:229 +#: ../../server/eit/commands/commit.py:246 +#: ../../server/eit/commands/commit.py:248 +#: ../../server/eit/commands/commit.py:267 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1737,149 +1739,149 @@ msgstr "Ви впевнені?" msgid "Yes" msgstr "Tak" -#: ../../libraries/entropy/server/interfaces/main.py:4966 +#: ../../libraries/entropy/server/interfaces/main.py:4965 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5086 +#: ../../libraries/entropy/server/interfaces/main.py:5085 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5088 +#: ../../libraries/entropy/server/interfaces/main.py:5087 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5101 +#: ../../libraries/entropy/server/interfaces/main.py:5100 #, fuzzy msgid "using metadata QA hook" msgstr "Визначається мета-інформація" -#: ../../libraries/entropy/server/interfaces/main.py:5128 +#: ../../libraries/entropy/server/interfaces/main.py:5127 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5177 +#: ../../libraries/entropy/server/interfaces/main.py:5176 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5203 +#: ../../libraries/entropy/server/interfaces/main.py:5202 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5225 +#: ../../libraries/entropy/server/interfaces/main.py:5224 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5242 +#: ../../libraries/entropy/server/interfaces/main.py:5241 #, fuzzy msgid "metadata QA check complete" msgstr "Блокування баз даних завершено" -#: ../../libraries/entropy/server/interfaces/main.py:5325 +#: ../../libraries/entropy/server/interfaces/main.py:5324 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5343 +#: ../../libraries/entropy/server/interfaces/main.py:5342 msgid "Exception caught, closing tasks" msgstr "Виявлено виняток, закриваємо завдання" -#: ../../libraries/entropy/server/interfaces/main.py:5435 +#: ../../libraries/entropy/server/interfaces/main.py:5434 msgid "server-side repository" msgstr "репозиторій сервера" -#: ../../libraries/entropy/server/interfaces/main.py:5437 +#: ../../libraries/entropy/server/interfaces/main.py:5436 msgid "community repository" msgstr "репозиторій співтовариства" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5439 +#: ../../libraries/entropy/server/interfaces/main.py:5438 msgid "Entropy Server Interface Instance on repository" msgstr "Сесія Entropy Server Interface в репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:5450 +#: ../../libraries/entropy/server/interfaces/main.py:5449 msgid "current branch" msgstr "поточна гілка" -#: ../../libraries/entropy/server/interfaces/main.py:5452 +#: ../../libraries/entropy/server/interfaces/main.py:5451 #: ../../server/server_reagent.py:241 msgid "type" msgstr "тип" -#: ../../libraries/entropy/server/interfaces/main.py:5461 +#: ../../libraries/entropy/server/interfaces/main.py:5460 msgid "Currently configured repositories" msgstr "Вірно налаштовані репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:5497 +#: ../../libraries/entropy/server/interfaces/main.py:5496 #, fuzzy msgid "GPG key expired" msgstr "протермінований" -#: ../../libraries/entropy/server/interfaces/main.py:5499 +#: ../../libraries/entropy/server/interfaces/main.py:5498 #, fuzzy msgid "please frigging fix" msgstr "будь-ласка, виправте (пофіксіть)" -#: ../../libraries/entropy/server/interfaces/main.py:5510 +#: ../../libraries/entropy/server/interfaces/main.py:5509 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5512 +#: ../../libraries/entropy/server/interfaces/main.py:5511 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5529 -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5528 +#: ../../libraries/entropy/server/interfaces/main.py:5543 msgid "config files" msgstr "файли налаштуваннь" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5530 +#: ../../libraries/entropy/server/interfaces/main.py:5529 msgid "checking system" msgstr "перевірка системи" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5545 +#: ../../libraries/entropy/server/interfaces/main.py:5544 msgid "there are configuration files not updated yet" msgstr "є ще не оновлені файли налаштуваннь" -#: ../../libraries/entropy/server/interfaces/main.py:5835 +#: ../../libraries/entropy/server/interfaces/main.py:5834 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5847 +#: ../../libraries/entropy/server/interfaces/main.py:5846 #, fuzzy msgid "added" msgstr "До додавання" -#: ../../libraries/entropy/server/interfaces/main.py:5941 +#: ../../libraries/entropy/server/interfaces/main.py:5940 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5963 -#: ../../libraries/entropy/server/interfaces/main.py:5977 +#: ../../libraries/entropy/server/interfaces/main.py:5962 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "No dependency rewrite made for" msgstr "робить суворішими правила щодо залежностей" -#: ../../libraries/entropy/server/interfaces/main.py:6049 -#: ../../libraries/entropy/server/interfaces/main.py:6069 -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6048 +#: ../../libraries/entropy/server/interfaces/main.py:6068 +#: ../../libraries/entropy/server/interfaces/main.py:6080 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6050 +#: ../../libraries/entropy/server/interfaces/main.py:6049 #, fuzzy msgid "updating package sets" msgstr "оновлення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:6070 +#: ../../libraries/entropy/server/interfaces/main.py:6069 #, fuzzy msgid "adding package set" msgstr "додавання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:6082 +#: ../../libraries/entropy/server/interfaces/main.py:6081 #, fuzzy msgid "removing package set" msgstr "видалення пакунку" @@ -2423,7 +2425,8 @@ msgstr "Налаштування" #: ../../server/server_activator.py:256 ../../server/server_activator.py:429 #: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 #: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../services/kernel-switcher:120 +#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 +#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -6674,6 +6677,7 @@ msgid "Would you like to calculate dependencies ?" msgstr "Чи бажаєте підрахувати залежності?" #: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 +#: ../../server/eit/commands/commit.py:244 msgid "Would you like to remove them now ?" msgstr "Бажаєте видалити їх зараз ?" @@ -7105,20 +7109,6 @@ msgstr "Дата створення" msgid "Expires on" msgstr "" -#: ../../server/eit.py:91 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit.py:123 -#, fuzzy -msgid "show repository status" -msgstr "відобразити статус репозиторіїв" - -#: ../../server/eit.py:141 -#, fuzzy -msgid "commit unstaged changes to repository" -msgstr "Встановлені пакунки" - #: ../../server/server_reagent.py:64 msgid "no package specified." msgstr "жодного пакунку не обрано." @@ -7163,7 +7153,7 @@ msgstr "Жодного коректного репозиторію не обра #: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 #: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 +#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 msgid "Cannot match" msgstr "Неможливо порівняти" @@ -7281,12 +7271,12 @@ msgstr "Неможливо перезаписати вже існуючий фа msgid "Bumping Repository database" msgstr "Створюю резервну копію бази даних репозиторію" -#: ../../server/server_reagent.py:896 +#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 msgid "No valid packages to repackage." msgstr "Немає коректних пакунків до перепакування" #. normal scanning -#: ../../server/server_reagent.py:901 +#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 msgid "Scanning database for differences" msgstr "Сканую базу даних на відмінності" @@ -7295,7 +7285,7 @@ msgstr "Сканую базу даних на відмінності" msgid "Invalid atom" msgstr "Хибна дія." -#: ../../server/server_reagent.py:928 +#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 msgid "Zarro thinggz totoo" msgstr "І ще дещо зробити" @@ -7316,7 +7306,7 @@ msgstr "Трансформування з бази даних" msgid "Database transform complete" msgstr "Трансформація даних бази завершена" -#: ../../server/server_reagent.py:956 +#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 msgid "expired" msgstr "протермінований" @@ -7324,7 +7314,7 @@ msgstr "протермінований" msgid "So sweetheart, what packages do you want to remove ?" msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" -#: ../../server/server_reagent.py:964 +#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 msgid "Remove this package?" msgstr "Видалити пакунки" @@ -7332,7 +7322,7 @@ msgstr "Видалити пакунки" msgid "So sweetheart, what packages do you want to add ?" msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" -#: ../../server/server_reagent.py:993 +#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 msgid "Add this package?" msgstr "Додати цей пакунок?" @@ -7341,62 +7331,62 @@ msgstr "Додати цей пакунок?" msgid "These are the packages that would be added/updated" msgstr "Тут перераховані пакунки, що будуть встановлені/оновлені" -#: ../../server/server_reagent.py:1030 +#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 #, fuzzy msgid "warning" msgstr "Обережно" -#: ../../server/server_reagent.py:1037 +#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 msgid "Would you like to package them now ?" msgstr "Бажаєте запакувати їх зараз?" -#: ../../server/server_reagent.py:1038 +#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 msgid "inside" msgstr "всередині" #. package them -#: ../../server/server_reagent.py:1050 +#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 msgid "Compressing packages" msgstr "Стиснення пакунків" -#: ../../server/server_reagent.py:1061 +#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 msgid "Ignoring broken Spm entry, please recompile it" msgstr "Пропускаємо зіпсований запис Spm, будь-ласка, налаштуйте його повторно" -#: ../../server/server_reagent.py:1064 +#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 msgid "Nothing to do, check later." msgstr "Робити більше нічого, перевірте згодом." -#: ../../server/server_reagent.py:1077 +#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 msgid "Entries handled" msgstr "обслуговані записи" -#: ../../server/server_reagent.py:1122 +#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 #, fuzzy msgid "local revision" msgstr "перевірка" -#: ../../server/server_reagent.py:1129 +#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 #, fuzzy msgid "stored packages" msgstr "замаскований пакунок" -#: ../../server/server_reagent.py:1134 +#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 #, fuzzy msgid "upload packages" msgstr "завантажені пакунки" -#: ../../server/server_reagent.py:1140 +#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 #, fuzzy msgid "unstaged packages" msgstr "замаскований пакунок" -#: ../../server/server_reagent.py:1171 +#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 #, fuzzy msgid "add" msgstr "До додавання" -#: ../../server/server_reagent.py:1181 +#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 #, fuzzy msgid "switch injected" msgstr "переключення" @@ -7420,6 +7410,82 @@ msgstr "набір пакунків не знайдений" msgid "Nothing found" msgstr "Нічого не знайдено" +#: ../../server/eit/main.py:80 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/status.py:178 +#, fuzzy +msgid "show repository status" +msgstr "відобразити статус репозиторіїв" + +#: ../../server/eit/commands/help.py:34 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "цю інструкцію" + +#: ../../server/eit/commands/commit.py:60 +#, fuzzy +msgid "selectively pick changes" +msgstr "Вилучення обраних пакунків" + +#: ../../server/eit/commands/commit.py:63 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/commit.py:167 +#, fuzzy +msgid "Invalid package" +msgstr "Встановлення пакунку" + +#: ../../server/eit/commands/commit.py:181 +#, fuzzy +msgid "These would be marked as injected" +msgstr "додано" + +#: ../../server/eit/commands/commit.py:191 +msgid "Do it now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:202 +#, fuzzy +msgid "Transforming" +msgstr "Трансформування з бази даних" + +#: ../../server/eit/commands/commit.py:206 +#, fuzzy +msgid "Transform complete" +msgstr "Трансформація даних бази завершена" + +#: ../../server/eit/commands/commit.py:222 +#, fuzzy +msgid "What packages do you want to remove ?" +msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" + +#: ../../server/eit/commands/commit.py:236 +#, fuzzy +msgid "These would be removed from repository" +msgstr "Підходящі до видалення з бази даних репозиторію" + +#: ../../server/eit/commands/commit.py:260 +#, fuzzy +msgid "What packages do you want to add ?" +msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" + +#: ../../server/eit/commands/commit.py:275 +#, fuzzy +msgid "These would be added or updated" +msgstr "Вони будуть додані в системну базу даних" + +#: ../../server/eit/commands/commit.py:367 +#, fuzzy +msgid "commit changes to repository" +msgstr "Встановлені пакунки" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 #: ../../sulfur/src/sulfur/views.py:2801 #: ../../sulfur/src/sulfur/dialogs.py:2514 @@ -8933,16 +8999,6 @@ msgstr "Перемкнути репозиторій" msgid "list kernels" msgstr "" -#: ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "цю інструкцію" - -#: ../../server/eit:355 -#, fuzzy -msgid "reset error" -msgstr "помилка сокета" - #: ../../sulfur/src/sulfur/sulfur.glade.h:1 #, fuzzy msgid "0 = no limit; 100 = 100kB/sec" @@ -10108,6 +10164,15 @@ msgstr "повідомник про оновлення додатків Magneto" msgid "_Load Package Manager" msgstr "_Завантажте пакунковий менеджер" +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "" +#~ "Серверний інтерфейс Entropy повинен бути виконаний від імені " +#~ "суперкористувача root" + +#, fuzzy +#~ msgid "reset error" +#~ msgstr "помилка сокета" + #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Неможливо підтвердити блокування ресурсів Entropy" @@ -10747,9 +10812,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Matches to add from Spm" #~ msgstr "Підходящі до додавання з SPM" -#~ msgid "Matches to remove from repository database" -#~ msgstr "Підходящі до видалення з бази даних репозиторію" - #~ msgid "Matches to inject on repository database" #~ msgstr "Підходящі до введення в базу даних репозиторію" From d819281926b690d388a31e6a13c1df4218135232 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 Oct 2011 19:32:36 +0200 Subject: [PATCH 05/99] [eit.commands.commit] use TextInterface.output() instead of print_* functions --- server/eit/commands/commit.py | 115 +++++++++++++++++++++------------- 1 file changed, 70 insertions(+), 45 deletions(-) diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index 4149e6527..a5c9eb2b6 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -16,8 +16,8 @@ import argparse from entropy.const import etpConst from entropy.i18n import _ from entropy.exceptions import PermissionDenied -from entropy.output import print_info, print_warning, print_error, \ - darkgreen, teal, brown, darkred, bold, purple, blue, red, green +from entropy.output import print_error, darkgreen, teal, brown, \ + darkred, bold, purple, blue, red, green from text_tools import print_table @@ -65,7 +65,6 @@ class EitCommit(EitCommand): try: nsargs = parser.parse_args(self._args) except IOError as err: - print_error("error: %s" % (err.strerror,)) return parser.print_help, [] self._interactive = nsargs.interactive @@ -120,8 +119,11 @@ class EitCommit(EitCommand): for item in self._repackage: match = dbconn.atomMatch(item) if match[0] == -1: - print_warning(darkred(" !!! ") + \ - red(_("Cannot match"))+" "+bold(item)) + entropy_server.output( + red(_("Cannot match"))+" "+bold(item), + header=darkred(" !!! "), + importance=1, + level="warning") else: cat = dbconn.retrieveCategory(match[0]) name = dbconn.retrieveName(match[0]) @@ -137,12 +139,16 @@ class EitCommit(EitCommand): if packages: to_be_added |= set(packages) else: - print_info(brown(" * ") + \ - red(_("No valid packages to repackage."))) + entropy_server.output( + red(_("No valid packages to repackage.")), + header=brown(" * "), + importance=1) # normal scanning - print_info(brown(" * ") + \ - red("%s..." % (_("Scanning database for differences"),) )) + entropy_server.output( + red("%s..." % (_("Scanning database for differences"),) ), + header=brown(" * "), + importance=1) try: myadded, to_be_removed, to_be_injected = \ entropy_server.scan_package_changes() @@ -163,29 +169,35 @@ class EitCommit(EitCommand): inst_myatom = entropy_server.Spm( ).match_installed_package(myatom) except KeyError: - print_warning(darkred(" !!! ") + \ - red(_("Invalid package")) + " " + bold(myatom)) + entropy_server.output( + red(_("Invalid package"))+" "+bold(myatom), + header=darkred(" !!! "), + importance=1, + level="warning") continue if inst_myatom in tba: tb_added_new.add(tba.get(inst_myatom)) to_be_added = tb_added_new if not (len(to_be_removed)+len(to_be_added)+len(to_be_injected)): - print_info(brown(" * ") + \ - red("%s." % (_("Zarro thinggz totoo"),))) + entropy_server.output( + red(_("Zarro thinggz to do")), + header=brown(" * "), + importance=1) return 0 if to_be_injected: - print_info(brown(" @@ ") + \ - blue("%s:" % ( - _("These would be marked as injected"),) )) + entropy_server.output( + blue(_("These would be marked as injected")), + header=brown(" @@ ")) for idpackage, repoid in sorted(to_be_injected, key = key_sorter): dbconn = entropy_server.open_server_repository(repoid, read_only = True, no_upload = True) atom = dbconn.retrieveAtom(idpackage) - print_info(brown(" # ") + "["+blue(repoid) + "] " + \ - red(atom)) + entropy_server.output("["+blue(repoid) + "] " + red(atom), + header=brown(" # ")) + if self._ask: rc = entropy_server.ask_question( ">> %s" % (_("Do it now ?"),)) @@ -198,12 +210,14 @@ class EitCommit(EitCommand): dbconn = entropy_server.open_server_repository(repoid, read_only = True, no_upload = True) atom = dbconn.retrieveAtom(idpackage) - print_info(brown(" <> ") + \ - blue("%s: " % (_("Transforming"),) )+red(atom)) + entropy_server.output( + "%s: %s" % (blue(_("Transforming")), + red(atom)), + header=brown(" <> ")) entropy_server._transform_package_into_injected( idpackage, repoid) - print_info(brown(" @@ ") + \ - blue("%s." % (_("Transform complete"),) )) + entropy_server.output(blue(_("Action completed")), + header=brown(" @@ ")) def show_rm(idpackage, repoid): dbconn = entropy_server.open_server_repository(repoid, @@ -214,12 +228,14 @@ class EitCommit(EitCommand): (idpackage, repoid,)) if pkg_expired: exp_string = "|%s" % (purple(_("expired")),) - print_info(brown(" # ") + "["+blue(repoid) + \ - exp_string + "] " + red(atom)) + entropy_server.output( + "["+blue(repoid) + exp_string + "] " + red(atom), + header=brown(" # ")) if self._interactive and to_be_removed: - print_info(brown(" @@ ") + \ - blue(_("What packages do you want to remove ?"))) + entropy_server.output( + blue(_("Select packages for removal")), + header=brown(" @@ ")) new_to_be_removed = set() for idpackage, repoid in sorted(to_be_removed, key = key_sorter): @@ -231,9 +247,9 @@ class EitCommit(EitCommand): to_be_removed = new_to_be_removed if to_be_removed: - - print_info(brown(" @@ ") + blue("%s:" % ( - _("These would be removed from repository"),) )) + entropy_server.output( + blue(_("These would be removed from repository")), + header=brown(" @@ ")) for idpackage, repoid in sorted(to_be_removed, key = key_sorter): show_rm(idpackage, repoid) @@ -256,12 +272,14 @@ class EitCommit(EitCommand): remdata[repoid]) if self._interactive and to_be_added: - print_info(brown(" @@ ") + \ - blue(_("What packages do you want to add ?"))) + entropy_server.output( + blue(_("Select packages to add")), + header=brown(" @@ ")) new_to_be_added = set() for tb_atom, tb_counter in sorted(to_be_added, key = lambda x: x[0]): - print_info(brown(" # ") + red(tb_atom)) + entropy_server.output(red(tb_atom), + header=brown(" # ")) rc = entropy_server.ask_question( ">> %s" % (_("Add this package?"),)) if rc == _("Yes"): @@ -270,9 +288,9 @@ class EitCommit(EitCommand): if to_be_added: - print_info(brown(" @@ ") + \ - blue("%s:" % ( - _("These would be added or updated"),) )) + entropy_server.output( + blue(_("These would be added or updated")), + header=brown(" @@ ")) items = sorted([x[0] for x in to_be_added]) for item in items: item_txt = purple(item) @@ -307,7 +325,7 @@ class EitCommit(EitCommand): bold(_("warning")), darkgreen(etp_repo), blue(spm_repo),) - print_info(brown(" # ") + item_txt) + entropy_server.output(item_txt, header=brown(" # ")) if self._ask: rc = entropy_server.ask_question(">> %s (%s %s)" % ( @@ -324,24 +342,30 @@ class EitCommit(EitCommand): return 1 # package them - print_info(brown(" @@ ") + \ - blue("%s..." % (_("Compressing packages"),) )) + entropy_server.output( + blue(_("Compressing packages")), + header=brown(" @@ ")) store_dir = entropy_server._get_local_store_directory( repository_id) for x in sorted(to_be_added): - print_info(brown(" # ") + teal(x[0])) + entropy_server.output(teal(x[0]), + header=brown(" # ")) try: pkg_list = entropy_server.Spm().generate_package(x[0], store_dir) generated_packages.append(pkg_list) except OSError: entropy.tools.print_traceback() - print_info(brown(" !!! ")+bold("%s..." % ( - _("Ignoring broken Spm entry, please recompile it"),) ) - ) + entropy_server.output( + bold(_("Ignoring broken Spm entry, please recompile it")), + header=brown(" !!! "), + importance=1, + level="warning") if not generated_packages: - print_info(brown(" * ")+red(_("Nothing to do, check later."))) + entropy_server.output( + red(_("Nothing to do, check later.")), + header=brown(" * ")) # then exit gracefully return 0 @@ -354,9 +378,10 @@ class EitCommit(EitCommand): # checking dependencies and print issues entropy_server.extended_dependencies_test([repository_id]) entropy_server.close_repositories() - print_info(green(" * ") + red("%s: " % (_("Statistics"),) ) + \ + entropy_server.output(red("%s: " % (_("Statistics"),) ) + \ blue("%s: " % (_("Entries handled"),) ) + \ - bold(str(len(idpackages)))) + bold(str(len(idpackages))), + header=darkgreen(" * ")) return 0 From 49314e677e77eda8c74b51d2e67b2bf5b80a234f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 10 Oct 2011 15:10:22 +0200 Subject: [PATCH 06/99] [eit.commands] avoid using print_info(), print_warning() and print_error() when possible --- server/eit/commands/commit.py | 5 +++-- server/eit/commands/status.py | 10 +++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index a5c9eb2b6..337d3da92 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -87,8 +87,9 @@ class EitCommit(EitCommand): return 1 acquired = entropy.tools.acquire_entropy_locks(server) if not acquired: - print_error( - darkgreen(_("Another Entropy is currently running.")) + entropy_server.output( + darkgreen(_("Another Entropy is currently running.")), + level="error", importance=1 ) return 1 return self.__commit(server) diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index 44ab7812c..73358fc3a 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -16,7 +16,7 @@ import argparse from entropy.const import etpConst from entropy.i18n import _ from entropy.exceptions import PermissionDenied -from entropy.output import print_info, print_error, darkgreen, \ +from entropy.output import print_error, darkgreen, \ teal, brown, darkred, bold, purple, blue from text_tools import print_table @@ -48,7 +48,6 @@ class EitStatus(EitCommand): try: nsargs = parser.parse_args(self._args) except IOError as err: - print_error("error: %s" % (err.strerror,)) return parser.print_help, [] return self._status, [nsargs.repo] @@ -67,8 +66,9 @@ class EitStatus(EitCommand): return 1 acquired = entropy.tools.acquire_entropy_locks(server) if not acquired: - print_error( - darkgreen(_("Another Entropy is currently running.")) + entropy_server.output( + darkgreen(_("Another Entropy is currently running.")), + level="error", importance=1 ) return 1 return self.__status(server) @@ -126,7 +126,7 @@ class EitStatus(EitCommand): print_table(toc) del toc[:] - print_info("") + entropy_server.output("") def _get_spm_slot_repo(pkg_atom): try: From 43390464e5b8eee9ba34950efe6a1c67f99ec43b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 10 Oct 2011 17:48:13 +0200 Subject: [PATCH 07/99] [eit.commands.status] trivial help update --- server/eit/commands/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index 73358fc3a..5205c07b1 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -43,7 +43,7 @@ class EitStatus(EitCommand): prog="%s %s" % (sys.argv[0], EitStatus.NAME)) parser.add_argument("repo", nargs='?', default=None, - metavar="", help="repository id") + metavar="", help=_("repository")) try: nsargs = parser.parse_args(self._args) From 3dc0c707013d1e1cd07a0944e171aa485a5b0ccb Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 10 Oct 2011 17:48:31 +0200 Subject: [PATCH 08/99] [eit.commands.add] implement "eit add" (and eit add --to, was eit addto) --- server/eit/commands/add.py | 66 +++++++++++++++++++++++++++++++++++ server/eit/commands/commit.py | 8 ++--- server/eit/main.py | 2 ++ 3 files changed, 72 insertions(+), 4 deletions(-) create mode 100644 server/eit/commands/add.py diff --git a/server/eit/commands/add.py b/server/eit/commands/add.py new file mode 100644 index 000000000..3f1bc2558 --- /dev/null +++ b/server/eit/commands/add.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.const import etpConst +from entropy.i18n import _ +from entropy.exceptions import PermissionDenied +from entropy.output import print_error, darkgreen, \ + teal, brown, darkred, bold, purple, blue + +from text_tools import print_table + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.commit import EitCommit + + +class EitAdd(EitCommit): + """ + Main Eit add command. + """ + + NAME = "add" + + def parse(self): + """ Overridden from EitCommit """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitAdd.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitAdd.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package names")) + parser.add_argument("--to", metavar="", + help=_("add to given repository"), + default=None) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + # setup atoms variable before spawning commit + self._packages = nsargs.packages[:] + return self._commit, [nsargs.to] + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitAdd, + EitAdd.NAME, + _('commit to repository the provided packages')) + ) diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index 337d3da92..aed58661a 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -43,7 +43,7 @@ class EitCommit(EitCommand): # list of package dependencies to re-package, if any self._repackage = [] # execute actions only for given atoms, if any - self._atoms = [] + self._packages = [] def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( @@ -54,7 +54,7 @@ class EitCommit(EitCommand): prog="%s %s" % (sys.argv[0], EitCommit.NAME)) parser.add_argument("repo", nargs='?', default=None, - metavar="", help="repository id") + metavar="", help=_("repository")) parser.add_argument("--interactive", action="store_true", default=False, help=_("selectively pick changes")) @@ -157,12 +157,12 @@ class EitCommit(EitCommand): return 1 to_be_added |= myadded - if self._atoms: + if self._packages: to_be_removed.clear() to_be_injected.clear() tba = dict(((x[0], x,) for x in to_be_added)) tb_added_new = set() - for myatom in self._atoms: + for myatom in self._packages: if myatom in tba: tb_added_new.add(tba.get(myatom)) continue diff --git a/server/eit/main.py b/server/eit/main.py index 5c6c26bd3..c17c198c8 100644 --- a/server/eit/main.py +++ b/server/eit/main.py @@ -20,6 +20,7 @@ import entropy.tools from eit.commands.status import EitStatus from eit.commands.help import EitHelp from eit.commands.commit import EitCommit +from eit.commands.add import EitAdd def handle_exception(exc_class, exc_instance, exc_tb): @@ -52,6 +53,7 @@ def main(): "--help": EitHelp, EitStatus.NAME: EitStatus, EitCommit.NAME: EitCommit, + EitAdd.NAME: EitAdd, } args = sys.argv[1:] From 66468d23ebb2bd37600727d19b893c54d4135755 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 10 Oct 2011 18:49:57 +0200 Subject: [PATCH 09/99] [eit.main] automatically build the list of available commands, add command aliases support --- server/eit/commands/__init__.py | 4 ++++ server/eit/commands/add.py | 1 + server/eit/commands/command.py | 4 ++++ server/eit/commands/commit.py | 1 + server/eit/commands/help.py | 8 +++++++- server/eit/commands/status.py | 1 + server/eit/main.py | 29 ++++++++++++++--------------- 7 files changed, 32 insertions(+), 16 deletions(-) diff --git a/server/eit/commands/__init__.py b/server/eit/commands/__init__.py index b0e064f6f..ef416f5dd 100644 --- a/server/eit/commands/__init__.py +++ b/server/eit/commands/__init__.py @@ -9,3 +9,7 @@ B{Entropy Infrastructure Toolkit}. """ +from eit.commands.help import EitHelp +from eit.commands.status import EitStatus +from eit.commands.commit import EitCommit +from eit.commands.add import EitAdd diff --git a/server/eit/commands/add.py b/server/eit/commands/add.py index 3f1bc2558..81640be2e 100644 --- a/server/eit/commands/add.py +++ b/server/eit/commands/add.py @@ -33,6 +33,7 @@ class EitAdd(EitCommit): """ NAME = "add" + ALIASES = [] def parse(self): """ Overridden from EitCommit """ diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index 29d07dbb2..68d57f365 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -22,6 +22,10 @@ class EitCommand(object): # gets triggered (for eit help, "help" is the NAME # that should be set). NAME = None + # Set this to a list of aliases for NAME + ALIASES = [] + # Set this to True if command is a catch-all (fallback) + CATCH_ALL = False def __init__(self, args): self._args = args diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index aed58661a..92287f1d5 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -33,6 +33,7 @@ class EitCommit(EitCommand): """ NAME = "commit" + ALIASES = ["ci"] def __init__(self, args): EitCommand.__init__(self, args) diff --git a/server/eit/commands/help.py b/server/eit/commands/help.py index 2c8522a86..120f5a3bc 100644 --- a/server/eit/commands/help.py +++ b/server/eit/commands/help.py @@ -22,6 +22,8 @@ class EitHelp(EitCommand): """ NAME = "help" + ALIASES = ["-h", "--help"] + CATCH_ALL = True def parse(self): """ @@ -39,7 +41,11 @@ class EitHelp(EitCommand): descriptors.sort(key = lambda x: x.get_name()) group = parser.add_argument_group("command", "available commands") for descriptor in descriptors: - group.add_argument(descriptor.get_name(), + aliases_str = ", ".join(descriptor.get_class().ALIASES) + if aliases_str: + aliases_str = " [%s]" % (aliases_str,) + name = "%s%s" % (descriptor.get_name(), aliases_str) + group.add_argument(name, help=descriptor.get_description(), action="store_true") parser.print_help() diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index 5205c07b1..c34d13280 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -33,6 +33,7 @@ class EitStatus(EitCommand): """ NAME = "status" + ALIASES = ["st"] def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( diff --git a/server/eit/main.py b/server/eit/main.py index c17c198c8..5a7fc2966 100644 --- a/server/eit/main.py +++ b/server/eit/main.py @@ -17,10 +17,7 @@ from entropy.i18n import _ from entropy.output import print_error import entropy.tools -from eit.commands.status import EitStatus -from eit.commands.help import EitHelp -from eit.commands.commit import EitCommit -from eit.commands.add import EitAdd +from eit.commands.descriptor import EitCommandDescriptor def handle_exception(exc_class, exc_instance, exc_tb): @@ -47,14 +44,16 @@ def main(): install_exception_handler() - args_map = { - EitHelp.NAME: EitHelp, - "-h": EitHelp, - "--help": EitHelp, - EitStatus.NAME: EitStatus, - EitCommit.NAME: EitCommit, - EitAdd.NAME: EitAdd, - } + descriptors = EitCommandDescriptor.obtain() + args_map = {} + catch_all = None + for descriptor in descriptors: + klass = descriptor.get_class() + if klass.CATCH_ALL: + catch_all = descriptor + args_map[klass.NAME] = klass + for alias in klass.ALIASES: + args_map[alias] = klass args = sys.argv[1:] cmd = None @@ -64,13 +63,13 @@ def main(): cmd_class = args_map.get(cmd) if cmd_class is None: - cmd_class = args_map.get(EitHelp.NAME) + cmd_class = catch_all # non-root users not allowed allowed = True if os.getuid() != 0 and \ - cmd_class is not EitHelp: - cmd_class = EitHelp + cmd_class is not catch_all: + cmd_class = catch_all allowed = False cmd_obj = cmd_class(args) From 9f318a04080f1d254f421876b2dade7fd8ea24da Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 00:23:09 +0200 Subject: [PATCH 10/99] [eit.commands.repack] implement new command "eit repack" --- server/eit/commands/__init__.py | 2 + server/eit/commands/repack.py | 68 +++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 server/eit/commands/repack.py diff --git a/server/eit/commands/__init__.py b/server/eit/commands/__init__.py index ef416f5dd..94fe41c99 100644 --- a/server/eit/commands/__init__.py +++ b/server/eit/commands/__init__.py @@ -9,7 +9,9 @@ B{Entropy Infrastructure Toolkit}. """ +# TODO: use automatic loader from eit.commands.help import EitHelp from eit.commands.status import EitStatus from eit.commands.commit import EitCommit from eit.commands.add import EitAdd +from eit.commands.repack import EitRepack diff --git a/server/eit/commands/repack.py b/server/eit/commands/repack.py new file mode 100644 index 000000000..d612930d5 --- /dev/null +++ b/server/eit/commands/repack.py @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.const import etpConst +from entropy.i18n import _ +from entropy.exceptions import PermissionDenied +from entropy.output import print_error, darkgreen, \ + teal, brown, darkred, bold, purple, blue + +from text_tools import print_table + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.commit import EitCommit + + +class EitRepack(EitCommit): + """ + Main Eit repack command. + """ + + NAME = "repack" + ALIASES = ["rp"] + + def parse(self): + """ Overridden from EitCommit """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitRepack.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitRepack.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package names")) + parser.add_argument("--in", metavar="", + help=_("repack to given repository"), + default=None, dest="into") + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + # setup atoms variable before spawning commit + self._packages = nsargs.packages[:] + self._repackage = self._packages + return self._commit, [nsargs.into] + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitRepack, + EitRepack.NAME, + _('rebuild packages in repository')) + ) From ddb3cf2510d9fc147cfc3e4e1ac260aea9da8d98 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 00:24:14 +0200 Subject: [PATCH 11/99] [eit.colorful] add some whacky classes to inject some colors into argparse output --- server/eit/colorful.py | 45 +++++++++++++++++++++++++++++++++++++ server/eit/commands/help.py | 18 ++++++++++----- 2 files changed, 57 insertions(+), 6 deletions(-) create mode 100644 server/eit/colorful.py diff --git a/server/eit/colorful.py b/server/eit/colorful.py new file mode 100644 index 000000000..ee1652e0f --- /dev/null +++ b/server/eit/colorful.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +NOTE: this colorful stuff introduces some unwanted effects. +But it's better than living in a black/white world. +""" +import sys +import argparse + +import textwrap as _textwrap + +from entropy.output import decolorize + +class ColorfulFormatter(argparse.RawDescriptionHelpFormatter): + """ + This is just a whacky HelpFormatter flavour to add some coloring. + """ + + def _split_lines(self, text, width): + text = self._whitespace_matcher.sub(' ', text).strip() + width_span = len(text) - len(decolorize(text)) + return _textwrap.wrap(text, width + width_span) + +if sys.hexversion >= 0x3000000: + str_class = str +else: + str_class = unicode +class ColorfulStr(str_class): + """ + This String object has been introduced to fake + argparse width calculations and allow colorful + help. + """ + def __new__(cls, seq): + return str_class.__new__(cls, seq) + + def __len__(self): + return len(decolorize(self)) diff --git a/server/eit/commands/help.py b/server/eit/commands/help.py index 120f5a3bc..6a3020c5c 100644 --- a/server/eit/commands/help.py +++ b/server/eit/commands/help.py @@ -12,7 +12,9 @@ import argparse from entropy.i18n import _ +from entropy.output import purple, teal, darkgreen, decolorize +from eit.colorful import ColorfulFormatter, ColorfulStr from eit.commands.descriptor import EitCommandDescriptor from eit.commands.command import EitCommand @@ -35,19 +37,23 @@ class EitHelp(EitCommand): parser = argparse.ArgumentParser( description=_("Entropy Infrastructure Toolkit"), epilog="http://www.sabayon.org", - formatter_class=argparse.RawDescriptionHelpFormatter) + formatter_class=ColorfulFormatter) descriptors = EitCommandDescriptor.obtain() descriptors.sort(key = lambda x: x.get_name()) group = parser.add_argument_group("command", "available commands") for descriptor in descriptors: - aliases_str = ", ".join(descriptor.get_class().ALIASES) + aliases = descriptor.get_class().ALIASES + aliases_str = ", ".join( + [teal(x) for x in aliases]) if aliases_str: aliases_str = " [%s]" % (aliases_str,) - name = "%s%s" % (descriptor.get_name(), aliases_str) - group.add_argument(name, - help=descriptor.get_description(), - action="store_true") + name = u"%s%s" % (purple(descriptor.get_name()), + aliases_str) + desc = darkgreen(descriptor.get_description()) + group.add_argument(ColorfulStr(name), + help=ColorfulStr(desc), + action="store_true") parser.print_help() if not self._args: return 1 From df513ad130d1077c933d2aea1e733842a6179268 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 14:45:49 +0200 Subject: [PATCH 12/99] [eit.main] fix catch-all class --- server/eit/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/main.py b/server/eit/main.py index 5a7fc2966..b51de1eec 100644 --- a/server/eit/main.py +++ b/server/eit/main.py @@ -50,7 +50,7 @@ def main(): for descriptor in descriptors: klass = descriptor.get_class() if klass.CATCH_ALL: - catch_all = descriptor + catch_all = klass args_map[klass.NAME] = klass for alias in klass.ALIASES: args_map[alias] = klass From 84dcd668bc22af0233e9a0d20fd9160132af5344 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 14:46:03 +0200 Subject: [PATCH 13/99] [eit.commands] automatically import all the available submodules --- server/eit/commands/__init__.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/server/eit/commands/__init__.py b/server/eit/commands/__init__.py index 94fe41c99..33fde2420 100644 --- a/server/eit/commands/__init__.py +++ b/server/eit/commands/__init__.py @@ -9,9 +9,19 @@ B{Entropy Infrastructure Toolkit}. """ -# TODO: use automatic loader -from eit.commands.help import EitHelp -from eit.commands.status import EitStatus -from eit.commands.commit import EitCommit -from eit.commands.add import EitAdd -from eit.commands.repack import EitRepack +import os +import sys + +_cur_file = sys.modules[__name__].__file__ +_cur_dir = os.path.dirname(_cur_file) +_excluded_mods = ["descriptor"] +for py_file in os.listdir(_cur_dir): + if not py_file.endswith(".py"): + continue + if py_file.startswith("_"): + continue + # strip .py + _mod = "eit.commands." + py_file[:-3] + if _mod in _excluded_mods: + continue + __import__(_mod) From e7d31352396fae88f8b1ae7d9f449f66d17e5cb0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 15:11:02 +0200 Subject: [PATCH 14/99] [eit.commands.command] move general entropy resources locking method to EitCommand --- server/eit/commands/command.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index 68d57f365..0e01ae809 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -10,9 +10,12 @@ """ from entropy.const import etpConst +from entropy.output import darkgreen, print_error from entropy.server.interfaces import Server from entropy.core.settings.base import SystemSettings +import entropy.tools + class EitCommand(object): """ Base class for Eit commands @@ -50,6 +53,34 @@ class EitCommand(object): kwargs["community_repo"] = etpConst['community']['mode'] return Server(*args, **kwargs) + def _call_locked(self, func, repo): + """ + Execute the given function at func after acquiring Entropy + Resources Lock, for given repository at repo. + The signature of func is: int func(entropy_server). + """ + server = None + acquired = False + try: + try: + server = self._entropy(default_repository=repo) + except PermissionDenied as err: + print_error(err.value) + return 1 + acquired = entropy.tools.acquire_entropy_locks(server) + if not acquired: + server.output( + darkgreen(_("Another Entropy is currently running.")), + level="error", importance=1 + ) + return 1 + return func(server) + finally: + if server is not None: + if acquired: + entropy.tools.release_entropy_locks(server) + server.shutdown() + def _settings(self): """ Return a SystemSettings instance. From dad7177dcfa715ec143d65d95510cecf614a8f5c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 15:11:27 +0200 Subject: [PATCH 15/99] [eit.commands.bump] new command "eit bump" --- server/eit/commands/bump.py | 77 +++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 server/eit/commands/bump.py diff --git a/server/eit/commands/bump.py b/server/eit/commands/bump.py new file mode 100644 index 000000000..bd30e0354 --- /dev/null +++ b/server/eit/commands/bump.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.const import etpConst +from entropy.output import darkgreen, blue +from entropy.i18n import _ +from entropy.exceptions import PermissionDenied + +from text_tools import print_table + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitBump(EitCommand): + """ + Main Eit bump command. + """ + + NAME = "bump" + ALIASES = [] + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitBump.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitBump.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + parser.add_argument("--sync", action="store_true", + default=False, + help=_("sync with remote repository")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._sync = nsargs.sync + return self._call_locked, [self._bump, nsargs.repo] + + def _bump(self, entropy_server): + """ + Actual Entropy Repository bump function + """ + entropy_server.output(darkgreen(" * ")+blue("%s..." % ( + _("Bumping repository"),) )) + entropy_server._bump_database(entropy_server.repository()) + if self._sync: + errors = entropy_server.Mirrors.sync_repository( + entropy_server.repository()) + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitBump, + EitBump.NAME, + _('bump repository revision, force push')) + ) From 47fbff23ae3af930efec7cef8e39345ff0496cea Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 15:11:42 +0200 Subject: [PATCH 16/99] [eit.commands.*] make use of EitCommand._call_locked method --- server/eit/commands/add.py | 2 +- server/eit/commands/commit.py | 30 ++---------------------------- server/eit/commands/repack.py | 2 +- server/eit/commands/status.py | 30 ++---------------------------- 4 files changed, 6 insertions(+), 58 deletions(-) diff --git a/server/eit/commands/add.py b/server/eit/commands/add.py index 81640be2e..fb0874799 100644 --- a/server/eit/commands/add.py +++ b/server/eit/commands/add.py @@ -57,7 +57,7 @@ class EitAdd(EitCommit): # setup atoms variable before spawning commit self._packages = nsargs.packages[:] - return self._commit, [nsargs.to] + return self._call_locked, [self._commit, nsargs.to] EitCommandDescriptor.register( EitCommandDescriptor( diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index 92287f1d5..58d2cb336 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -72,35 +72,9 @@ class EitCommit(EitCommand): if not self._interactive: self._ask = not nsargs.quick - return self._commit, [nsargs.repo] + return self._call_locked, [self._commit, nsargs.repo] - def _commit(self, repo): - """ - Commit command body. - """ - server = None - acquired = False - try: - try: - server = self._entropy(default_repository=repo) - except PermissionDenied as err: - print_error(err.value) - return 1 - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - entropy_server.output( - darkgreen(_("Another Entropy is currently running.")), - level="error", importance=1 - ) - return 1 - return self.__commit(server) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - - def __commit(self, entropy_server): + def _commit(self, entropy_server): to_be_added = set() to_be_removed = set() to_be_injected = set() diff --git a/server/eit/commands/repack.py b/server/eit/commands/repack.py index d612930d5..ab98cb9d5 100644 --- a/server/eit/commands/repack.py +++ b/server/eit/commands/repack.py @@ -58,7 +58,7 @@ class EitRepack(EitCommit): # setup atoms variable before spawning commit self._packages = nsargs.packages[:] self._repackage = self._packages - return self._commit, [nsargs.into] + return self._call_locked, [self._commit, nsargs.into] EitCommandDescriptor.register( EitCommandDescriptor( diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index c34d13280..581ed29e9 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -51,35 +51,9 @@ class EitStatus(EitCommand): except IOError as err: return parser.print_help, [] - return self._status, [nsargs.repo] + return self._call_locked, [self._status, nsargs.repo] - def _status(self, repo): - """ - Status command body. - """ - server = None - acquired = False - try: - try: - server = self._entropy(default_repository=repo) - except PermissionDenied as err: - print_error(err.value) - return 1 - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - entropy_server.output( - darkgreen(_("Another Entropy is currently running.")), - level="error", importance=1 - ) - return 1 - return self.__status(server) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - - def __status(self, entropy_server): + def _status(self, entropy_server): plugin_id = etpConst['system_settings_plugins_ids']['server_plugin'] repos_data = self._settings()[plugin_id]['server']['repositories'] repo_id = entropy_server.repository() From 0b1999ab51f399b3840cbf8f302f134a0bcdce8f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 15:21:27 +0200 Subject: [PATCH 17/99] [entropy.server.interfaces.db] uncompress the right packages.db.meta on download --- libraries/entropy/server/interfaces/db.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libraries/entropy/server/interfaces/db.py b/libraries/entropy/server/interfaces/db.py index 49c402acd..b73f20e74 100644 --- a/libraries/entropy/server/interfaces/db.py +++ b/libraries/entropy/server/interfaces/db.py @@ -779,8 +779,12 @@ class ServerPackagesRepositoryUpdater(object): uncompressed_changelog, bz2.BZ2File) # unpack metafiles file + metafiles_path_name = os.path.basename( + download_data['metafiles_path']) + metafiles_path = os.path.join(mytmpdir, + metafiles_path_name) metafiles_unpack_done = entropy.tools.universal_uncompress( - download_data['metafiles_path'], mytmpdir, + metafiles_path, mytmpdir, catch_empty = True) if not metafiles_unpack_done: self._entropy.output( @@ -789,7 +793,7 @@ class ServerPackagesRepositoryUpdater(object): darkgreen(crippled_uri), red(_("errors")), blue(_("failed to unpack")), - os.path.basename(download_data['metafiles_path']), + os.path.basename(metafiles_path_name), ), importance = 0, level = "error", From 6d30f5a38f8841b90ffce9aa6250b3054c8d55f2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 19:59:18 +0200 Subject: [PATCH 18/99] [eit.commands.*] drop unused imports --- server/eit/commands/add.py | 8 -------- server/eit/commands/bump.py | 6 ------ server/eit/commands/command.py | 1 + server/eit/commands/commit.py | 8 ++------ server/eit/commands/repack.py | 8 -------- server/eit/commands/status.py | 7 ++----- 6 files changed, 5 insertions(+), 33 deletions(-) diff --git a/server/eit/commands/add.py b/server/eit/commands/add.py index fb0874799..12712ab8a 100644 --- a/server/eit/commands/add.py +++ b/server/eit/commands/add.py @@ -13,15 +13,7 @@ import sys import os import argparse -from entropy.const import etpConst from entropy.i18n import _ -from entropy.exceptions import PermissionDenied -from entropy.output import print_error, darkgreen, \ - teal, brown, darkred, bold, purple, blue - -from text_tools import print_table - -import entropy.tools from eit.commands.descriptor import EitCommandDescriptor from eit.commands.commit import EitCommit diff --git a/server/eit/commands/bump.py b/server/eit/commands/bump.py index bd30e0354..9de0ad569 100644 --- a/server/eit/commands/bump.py +++ b/server/eit/commands/bump.py @@ -13,14 +13,8 @@ import sys import os import argparse -from entropy.const import etpConst from entropy.output import darkgreen, blue from entropy.i18n import _ -from entropy.exceptions import PermissionDenied - -from text_tools import print_table - -import entropy.tools from eit.commands.descriptor import EitCommandDescriptor from eit.commands.command import EitCommand diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index 0e01ae809..e0ff4c5f9 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -11,6 +11,7 @@ """ from entropy.const import etpConst from entropy.output import darkgreen, print_error +from entropy.exceptions import PermissionDenied from entropy.server.interfaces import Server from entropy.core.settings.base import SystemSettings diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index 58d2cb336..b256a24cd 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -13,13 +13,9 @@ import sys import os import argparse -from entropy.const import etpConst from entropy.i18n import _ -from entropy.exceptions import PermissionDenied -from entropy.output import print_error, darkgreen, teal, brown, \ - darkred, bold, purple, blue, red, green - -from text_tools import print_table +from entropy.output import darkgreen, teal, brown, \ + darkred, bold, purple, blue, red import entropy.tools diff --git a/server/eit/commands/repack.py b/server/eit/commands/repack.py index ab98cb9d5..19c395acc 100644 --- a/server/eit/commands/repack.py +++ b/server/eit/commands/repack.py @@ -13,15 +13,7 @@ import sys import os import argparse -from entropy.const import etpConst from entropy.i18n import _ -from entropy.exceptions import PermissionDenied -from entropy.output import print_error, darkgreen, \ - teal, brown, darkred, bold, purple, blue - -from text_tools import print_table - -import entropy.tools from eit.commands.descriptor import EitCommandDescriptor from eit.commands.commit import EitCommit diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index 581ed29e9..0935c2930 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -15,14 +15,11 @@ import argparse from entropy.const import etpConst from entropy.i18n import _ -from entropy.exceptions import PermissionDenied -from entropy.output import print_error, darkgreen, \ - teal, brown, darkred, bold, purple, blue +from entropy.output import darkgreen, teal, brown, darkred, \ + bold, purple, blue from text_tools import print_table -import entropy.tools - from eit.commands.descriptor import EitCommandDescriptor from eit.commands.command import EitCommand From db37314f6ed74f3eb2f01e407b1257bb5e1885b0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 19:59:34 +0200 Subject: [PATCH 19/99] [eit.commands.checkout] new command "eit checkout" --- server/eit/commands/checkout.py | 64 +++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 server/eit/commands/checkout.py diff --git a/server/eit/commands/checkout.py b/server/eit/commands/checkout.py new file mode 100644 index 000000000..883a2ce33 --- /dev/null +++ b/server/eit/commands/checkout.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.output import darkgreen, blue +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitCheckout(EitCommand): + """ + Main Eit checkout command. + """ + + NAME = "checkout" + ALIASES = ["ci"] + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitCheckout.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitCheckout.NAME)) + + parser.add_argument("repo", metavar="", + help=_("repository")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + return self._call_locked, [self._checkout, nsargs.repo] + + def _checkout(self, entropy_server): + """ + Actual Entropy Repository checkout function + """ + repository_id = entropy_server.repository() + entropy_server.switch_default_repository(repository_id, + save = True) + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitCheckout, + EitCheckout.NAME, + _('switch from a repository to another')) + ) From fc557d951c91a8390caccd9684e6f52c69c3a26a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 20:23:02 +0200 Subject: [PATCH 20/99] [eit.commands.cleanup] add new command "eit cleanup" --- server/eit/commands/cleanup.py | 68 ++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 server/eit/commands/cleanup.py diff --git a/server/eit/commands/cleanup.py b/server/eit/commands/cleanup.py new file mode 100644 index 000000000..97fed50f5 --- /dev/null +++ b/server/eit/commands/cleanup.py @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.output import darkgreen, blue +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitCleanup(EitCommand): + """ + Main Eit cleanup command. + """ + + NAME = "cleanup" + ALIASES = ["cn"] + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitCleanup.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitCleanup.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._ask = not nsargs.quick + return self._call_locked, [self._cleanup, nsargs.repo] + + def _cleanup(self, entropy_server): + """ + Actual Entropy Repository cleanup function + """ + repository_id = entropy_server.repository() + entropy_server.Mirrors.tidy_mirrors(repository_id, + ask = self._ask) + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitCleanup, + EitCleanup.NAME, + _('clean expired packages from a repository')) + ) From d4d5eec3df369ab5f38d052c2c1c5075f519fbc8 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 22:52:03 +0200 Subject: [PATCH 21/99] [eit.commands.cleanup] add "eit clean" alias --- server/eit/commands/cleanup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/commands/cleanup.py b/server/eit/commands/cleanup.py index 97fed50f5..5de2a2da8 100644 --- a/server/eit/commands/cleanup.py +++ b/server/eit/commands/cleanup.py @@ -26,7 +26,7 @@ class EitCleanup(EitCommand): """ NAME = "cleanup" - ALIASES = ["cn"] + ALIASES = ["cn", "clean"] def parse(self): """ Overridden from EitCommand """ From 6ef3ce1bed558be91ef4070f8a432dcd680c0cd7 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 22:52:19 +0200 Subject: [PATCH 22/99] [eit.commands.cp] new command "eit cp" --- server/eit/commands/cp.py | 131 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 server/eit/commands/cp.py diff --git a/server/eit/commands/cp.py b/server/eit/commands/cp.py new file mode 100644 index 000000000..453e335b4 --- /dev/null +++ b/server/eit/commands/cp.py @@ -0,0 +1,131 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.output import darkgreen, blue, brown, bold, red, purple, teal +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitCp(EitCommand): + """ + Main Eit cp command. + """ + + NAME = "cp" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._source = None + self._dest = None + self._deps = False + self._packages = [] + self._copy = True + + def parse(self): + """ Overridden from EitCp """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitCp.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitCp.NAME)) + + parser.add_argument("source", nargs=1, + metavar="", + help=_("source repository")) + parser.add_argument("dest", nargs=1, + metavar="", + help=_("destination repository")) + parser.add_argument("--deps", action="store_true", + default=False, + help=_("include dependencies")) + parser.add_argument("package", nargs='+', metavar="", + help=_("package dependency")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._source = nsargs.source[0] + self._dest = nsargs.dest[0] + self._deps = nsargs.deps + self._packages += nsargs.package + return self._call_locked, [self._move_copy, self._source] + + def _move_copy(self, entropy_server): + """ + Execute package move or copy (depending on self._copy) from + source repository and destination repository. If deps is true, + also dependencies are pulled in. + """ + package_ids = [] + + if self._source == self._dest: + entropy_server.output( + "%s: %s" % (purple(_("source equals destination")), + teal(self._dest)), + importance=1, + level="error") + return 1 + if self._dest not in entropy_server.repositories(): + # destination repository not available + entropy_server.output( + "%s: %s" % (purple(_("repository not available")), + teal(self._dest)), + importance=1, + level="error") + return 1 + + # match + for package in self._packages: + p_matches, p_rc = entropy_server.atom_match(package, + match_repo = [self._source], multi_match = True) + if not p_matches: + entropy_server.output( + red("%s: " % (_("Cannot match"),) ) + bold(package) + \ + red(" %s " % (_("in"),) ) + bold(self._source) + \ + red(" %s" % (_("repository"),)), + header=brown(" * "), + level="warning", + importance=1) + else: + package_ids += [pkg_id for pkg_id, r_id in p_matches if \ + (pkg_id not in package_ids)] + + if not package_ids: + return 1 + + rc = False + if self._copy: + rc = entropy_server.copy_packages(package_ids, self._source, + self._dest, pull_dependencies = self._deps) + else: + rc = entropy_server.move_packages(package_ids, self._source, + self._dest, pull_dependencies = self._deps) + if rc: + return 0 + return 1 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitCp, + EitCp.NAME, + _('copy packages from a repository to another')) + ) From 70d89146d6ec4fbbea386777b30e74e4e1bcb226 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 22:52:31 +0200 Subject: [PATCH 23/99] [eit.commands.mv] new command "eit mv" --- server/eit/commands/mv.py | 69 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 server/eit/commands/mv.py diff --git a/server/eit/commands/mv.py b/server/eit/commands/mv.py new file mode 100644 index 000000000..6899d1f15 --- /dev/null +++ b/server/eit/commands/mv.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.cp import EitCp + + +class EitMv(EitCp): + """ + Main Eit mv command. + """ + + NAME = "mv" + ALIASES = [] + + def parse(self): + """ Overridden from EitMv """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitMv.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitMv.NAME)) + + parser.add_argument("source", nargs=1, + metavar="", + help=_("source repository")) + parser.add_argument("dest", nargs=1, + metavar="", + help=_("destination repository")) + parser.add_argument("--deps", action="store_true", + default=False, + help=_("include dependencies")) + parser.add_argument("package", nargs='+', metavar="", + help=_("package dependency")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._source = nsargs.source[0] + self._dest = nsargs.dest[0] + self._deps = nsargs.deps + self._packages += nsargs.package + self._copy = False + return self._call_locked, [self._move_copy, self._source] + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitMv, + EitMv.NAME, + _('move packages from a repository to another')) + ) From 09505a2f94649e0b4b765358634e90e5e8f5b12b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 23:24:49 +0200 Subject: [PATCH 24/99] [eit.commit.init] new command "eit init" --- server/eit/commands/init.py | 70 +++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 server/eit/commands/init.py diff --git a/server/eit/commands/init.py b/server/eit/commands/init.py new file mode 100644 index 000000000..e4196914a --- /dev/null +++ b/server/eit/commands/init.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import darkgreen, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitInit(EitCommand): + """ + Main Eit init command. + """ + + NAME = "init" + ALIASES = [] + + def parse(self): + """ Overridden from EitInit """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitInit.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitInit.NAME)) + + parser.add_argument("repo", nargs=1, default=None, + metavar="", help=_("repository")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._ask = not nsargs.quick + return self._call_locked, [self._init, nsargs.repo[0]] + + def _init(self, entropy_server): + rc = entropy_server.initialize_repository( + entropy_server.repository(), ask=self._ask) + if rc == 0: + entropy_server.output( + teal(_("Entropy repository has been initialized")), + header=darkgreen(" * "), + importance=1) + return 0 + return 1 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitInit, + EitInit.NAME, + _('initialize repository (erasing all its content)')) + ) From 5bd22445e8ffc8eaa143fc9fce68df63e4fdd2a2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 12 Oct 2011 23:32:01 +0200 Subject: [PATCH 25/99] [eit.commands.repo] new command "eit repo" --- server/eit/commands/repo.py | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 server/eit/commands/repo.py diff --git a/server/eit/commands/repo.py b/server/eit/commands/repo.py new file mode 100644 index 000000000..9148db61d --- /dev/null +++ b/server/eit/commands/repo.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import darkgreen, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitRepo(EitCommand): + """ + Main Eit repo command. + """ + + NAME = "repo" + ALIASES = [] + + def parse(self): + """ Overridden from EitRepo """ + return self._call_locked, [self._void, None] + + def _void(self, entropy_server): + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitRepo, + EitRepo.NAME, + _('show current repository')) + ) From 5bd0da60ba84e195891a985f376a5aafb06c7171 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 16:21:38 +0200 Subject: [PATCH 26/99] [eit.commands.command] add missing import --- server/eit/commands/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index e0ff4c5f9..fe3cd52d2 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -9,6 +9,7 @@ B{Entropy Infrastructure Toolkit}. """ +from entropy.i18n import _ from entropy.const import etpConst from entropy.output import darkgreen, print_error from entropy.exceptions import PermissionDenied From 7d6c7e2650ceff2f9be8cdbaf4fdc3994857e5b5 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 16:21:54 +0200 Subject: [PATCH 27/99] [eit.commands.push] new command "eit push" --- server/eit/commands/push.py | 261 ++++++++++++++++++++++++++++++++++++ 1 file changed, 261 insertions(+) create mode 100644 server/eit/commands/push.py diff --git a/server/eit/commands/push.py b/server/eit/commands/push.py new file mode 100644 index 000000000..f6e203c80 --- /dev/null +++ b/server/eit/commands/push.py @@ -0,0 +1,261 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse +import tempfile + +from entropy.const import etpConst +from entropy.i18n import _ +from entropy.output import darkgreen, teal, red, darkred, brown, blue, bold +from entropy.transceivers import EntropyTransceiver +from entropy.server.interfaces import ServerSystemSettingsPlugin +from entropy.server.interfaces.rss import ServerRssMetadata + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitPush(EitCommand): + """ + Main Eit reset command. + """ + + NAME = "push" + ALIASES = ["pull","sync"] + DEFAULT_REPO_COMMIT_MSG = """ +# This is Entropy Server repository commit message handler. +# Please friggin' enter the commit message for your changes. Lines starting +# with '#' will be ignored. To avoid encoding issue, write stuff in plain ASCII. +""" + + def __init__(self, args): + EitCommand.__init__(self, args) + self._ask = True + self._pretend = False + self._all = False + self._repositories = [] + self._cleanup_only = False + self._as_repository_id = None + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitPush.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitPush.NAME)) + + parser.add_argument("repo", nargs='*', default=None, + metavar="", help=_("repository")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + parser.add_argument("--all", action="store_true", + default=False, + help=_("push all the repositories")) + parser.add_argument("--as", metavar="", default=None, + help=_("push as fake repository"), dest="asrepo") + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._ask = not nsargs.quick + self._all = nsargs.all + self._repositories += nsargs.repo + self._as_repository_id = nsargs.asrepo + + return self._call_locked, [self._push, None] + + def _push(self, entropy_server): + """ + Main Eit push code. + """ + if not self._repositories and (not self._all): + # pick default if none specified + self._repositories.append(entropy_server.repository()) + if not self._repositories and self._all: + self._repositories.extend(entropy_server.repositories()) + + if self._as_repository_id is not None and \ + len(self._repositories) > 1: + # cannot push as fake repository when + # more than one repository is specified + entropy_server.output( + _("multiple repositories and --as ain't friends"), + importance=1, level="error") + return 1 + + for repository_id in self._repositories: + # avoid __default__ + if repository_id == etpConst['clientserverrepoid']: + continue + rc = self._push_repo(entropy_server, repository_id) + if rc != 0: + return rc + + return 0 + + def _push_repo(self, entropy_server, repository_id): + """ + Push (actually sync) the repository. + """ + done = True + if not self._cleanup_only: + rc = self.__push_repo(entropy_server, repository_id) + if rc != 0: + done = False + + if done: + done = entropy_server.Mirrors.tidy_mirrors(repository_id, + ask = self._ask, pretend = self._pretend) + + if done: + return 0 + return 1 + + def _commit_message(self, entropy_server, successfull_mirrors): + """ + Ask user to enter the commit message for data being pushed. + Store inside rss metadata object. + """ + tmp_fd, tmp_commit_path = tempfile.mkstemp( + prefix="eit._push", suffix=".COMMIT_MSG") + with os.fdopen(tmp_fd, "w") as tmp_f: + tmp_f.write(EitPush.DEFAULT_REPO_COMMIT_MSG) + if successfull_mirrors: + tmp_f.write("# Changes to be committed:\n") + for sf_mirror in sorted(successfull_mirrors): + tmp_f.write("#\t updated: %s\n" % (sf_mirror,)) + + # spawn editor + cm_msg_rc = entropy_server.edit_file(tmp_commit_path) + commit_msg = None + if not cm_msg_rc: + # wtf?, fallback to old way + def fake_callback(*args, **kwargs): + return True + + input_params = [ + ('message', _("Commit message"), fake_callback, False)] + commit_data = entropy_server.input_box( + _("Enter the commit message"), + input_params, cancel_button = True) + if commit_data: + commit_msg = commit_data['message'] + else: + commit_msg = '' + with open(tmp_commit_path, "r") as tmp_f: + for line in tmp_f.readlines(): + if line.strip().startswith("#"): + continue + commit_msg += line + entropy_server.output(commit_msg) + + os.remove(tmp_commit_path) + return commit_msg + + def __print_repository_status(self, entropy_server, repository_id): + remote_db_status = entropy_server.Mirrors.remote_repository_status( + repository_id) + + entropy_server.output( + "%s:" % (brown(_("Entropy Repository Status")),), + importance=1, + header=darkgreen(" * ") + ) + for url, revision in remote_db_status.items(): + host = EntropyTransceiver.get_uri_name(url) + entropy_server.output( + "%s: %s" % (darkgreen(_("Host")), bold(host)), + header=" ") + entropy_server.output( + "%s: %s" % (purple(_("Remote")), blue(str(revision))), + header=" ") + + local_revision = entropy_server.local_repository_revision( + repository_id) + entropy_server.output( + "%s: %s" % (brown(_("Local")), teal(str(local_revision))), + header=" ") + + def __sync_remote_database(self, entropy_server, repository_id): + self.__print_repository_status(entropy_server, repository_id) + # do the actual sync + sts = entropy_server.Mirrors.sync_repository(repository_id) + self.__print_repository_status(entropy_server, repository_id) + return sts + + def __push_repo(self, entropy_server, repository_id): + sys_settings_plugin_id = \ + etpConst['system_settings_plugins_ids']['server_plugin'] + srv_data = self._settings()[sys_settings_plugin_id]['server'] + rss_enabled = srv_data['rss']['enabled'] + + mirrors_tainted, mirrors_errors, successfull_mirrors, \ + broken_mirrors, check_data = \ + entropy_server.Mirrors.sync_packages( + repository_id, ask = self._ask, + pretend = self._pretend) + + if mirrors_errors and not successfull_mirrors: + entropy_server.output(red(_("Aborting !")), + importance=1, level="error", header=darkred(" !!! ")) + return 1 + if not successfull_mirrors: + return 0 + + if mirrors_tainted and (self._as_repository_id is None): + + commit_msg = None + if self._ask and rss_enabled: + commit_msg = self._commit_message(entropy_server, + successfull_mirrors) + elif rss_enabled: + commit_msg = "Automatic update" + + if commit_msg is None: + commit_msg = "no commit message" + ServerRssMetadata()['commitmessage'] = commit_msg + + if self._as_repository_id is not None: + # change repository push location + ServerSystemSettingsPlugin.set_override_remote_repository( + self._settings(), repository_id, self._as_repository_id) + + sts = self.__sync_remote_database(entropy_server, repository_id) + if sts == 0: + # do not touch locking + entropy_server.Mirrors.lock_mirrors(repository_id, False, + unlock_locally = (self._as_repository_id is None)) + + if (sts == 0) and self._ask: + q_rc = entropy_server.ask_question( + _("Should I cleanup old packages on mirrors ?")) + if q_rc == _("No"): + return 0 + elif sts != 0: + entropy_server.output(red(_("Aborting !")), + importance=1, level="error", header=darkred(" !!! ")) + return sts + + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitPush, + EitPush.NAME, + _('reset repository to remote status')) + ) From caf46488315801552aabc1343a587dc735b89a85 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 19:45:05 +0200 Subject: [PATCH 28/99] [eit.commands.push] refine command line options --- server/eit/commands/push.py | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/server/eit/commands/push.py b/server/eit/commands/push.py index f6e203c80..7bd0f80a3 100644 --- a/server/eit/commands/push.py +++ b/server/eit/commands/push.py @@ -55,15 +55,17 @@ class EitPush(EitCommand): formatter_class=argparse.RawDescriptionHelpFormatter, prog="%s %s" % (sys.argv[0], EitPush.NAME)) - parser.add_argument("repo", nargs='*', default=None, + parser.add_argument("repo", nargs='?', default=None, metavar="", help=_("repository")) parser.add_argument("--quick", action="store_true", default=False, help=_("no stupid questions")) - parser.add_argument("--all", action="store_true", + + group = parser.add_mutually_exclusive_group() + group.add_argument("--all", action="store_true", default=False, help=_("push all the repositories")) - parser.add_argument("--as", metavar="", default=None, + group.add_argument("--as", metavar="", default=None, help=_("push as fake repository"), dest="asrepo") try: @@ -73,7 +75,8 @@ class EitPush(EitCommand): self._ask = not nsargs.quick self._all = nsargs.all - self._repositories += nsargs.repo + if nsargs.repo is not None: + self._repositories.append(nsargs.repo) self._as_repository_id = nsargs.asrepo return self._call_locked, [self._push, None] @@ -88,15 +91,6 @@ class EitPush(EitCommand): if not self._repositories and self._all: self._repositories.extend(entropy_server.repositories()) - if self._as_repository_id is not None and \ - len(self._repositories) > 1: - # cannot push as fake repository when - # more than one repository is specified - entropy_server.output( - _("multiple repositories and --as ain't friends"), - importance=1, level="error") - return 1 - for repository_id in self._repositories: # avoid __default__ if repository_id == etpConst['clientserverrepoid']: @@ -257,5 +251,5 @@ EitCommandDescriptor.register( EitCommandDescriptor( EitPush, EitPush.NAME, - _('reset repository to remote status')) + _('push (or pull) repository packages and metadata')) ) From 2fdc36e65a3c152303f16a855062798802b30684 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 20:01:48 +0200 Subject: [PATCH 29/99] [eit.commands.push] add missing import, improve code robustness --- server/eit/commands/push.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/eit/commands/push.py b/server/eit/commands/push.py index 7bd0f80a3..dd327e614 100644 --- a/server/eit/commands/push.py +++ b/server/eit/commands/push.py @@ -16,7 +16,8 @@ import tempfile from entropy.const import etpConst from entropy.i18n import _ -from entropy.output import darkgreen, teal, red, darkred, brown, blue, bold +from entropy.output import darkgreen, teal, red, darkred, brown, blue, \ + bold, purple from entropy.transceivers import EntropyTransceiver from entropy.server.interfaces import ServerSystemSettingsPlugin from entropy.server.interfaces.rss import ServerRssMetadata @@ -79,7 +80,7 @@ class EitPush(EitCommand): self._repositories.append(nsargs.repo) self._as_repository_id = nsargs.asrepo - return self._call_locked, [self._push, None] + return self._call_locked, [self._push, nsargs.repo] def _push(self, entropy_server): """ From e3acca310231ab211b9cfba4e8a3bd2b58e3d216 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 20:02:20 +0200 Subject: [PATCH 30/99] [eit.commands.reset] new command "eit reset" --- server/eit/commands/reset.py | 98 ++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 server/eit/commands/reset.py diff --git a/server/eit/commands/reset.py b/server/eit/commands/reset.py new file mode 100644 index 000000000..1c47aabae --- /dev/null +++ b/server/eit/commands/reset.py @@ -0,0 +1,98 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import darkgreen, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.push import EitPush + + +class EitReset(EitPush): + """ + Main Eit reset command. + """ + + # TODO: incomplete, needs eit push implemented first + + NAME = "reset" + ALIASES = [] + + def __init__(self, args): + EitPush.__init__(self, args) + self._reset_repository_id = None + self._local = False + + def parse(self): + """ Overridden from EitPush """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitReset.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitReset.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + parser.add_argument("--local", action="store_true", + default=False, + help=_("do not pull the remote repository")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._local = nsargs.local + self._ask = not nsargs.quick + if nsargs.repo is not None: + self._repositories.append(nsargs.repo) + self._reset_repository_id = nsargs.repo + + return self._call_locked, [self._reset, nsargs.repo] + + def _reset(self, entropy_server): + repository_id = self._reset_repository_id + if repository_id is None: + repository_id = entropy_server.repository() + rev_path = entropy_server._get_local_repository_revision_file( + repository_id) + + try: + with open(rev_path, "w") as rev_f: + rev_f.write("0\n") + except (IOError, OSError) as err: + entropy_server.output( + "%s: %s" % (_("reset error"), err), + importance=1, level="error") + return 1 + + entropy_server.output( + darkgreen(_("local repository revision reset complete")), + importance=1) + if self._local: + return 0 + + return self._push(entropy_server) + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitReset, + EitReset.NAME, + _('reset repository to remote status')) + ) From d48942215bdb08dc564fe56bda59e27ffb0b3fdf Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 20:02:47 +0200 Subject: [PATCH 31/99] [eit.commands.reset] drop TODO comment --- server/eit/commands/reset.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/eit/commands/reset.py b/server/eit/commands/reset.py index 1c47aabae..e1fd4fc9e 100644 --- a/server/eit/commands/reset.py +++ b/server/eit/commands/reset.py @@ -25,8 +25,6 @@ class EitReset(EitPush): Main Eit reset command. """ - # TODO: incomplete, needs eit push implemented first - NAME = "reset" ALIASES = [] From b7ee6a356ab4e3fbc69658220645195c832b717f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 13 Oct 2011 22:52:19 +0200 Subject: [PATCH 32/99] [eit.commands.test] new command "eit test" (deps, libs, links) --- server/eit/commands/test.py | 109 ++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 server/eit/commands/test.py diff --git a/server/eit/commands/test.py b/server/eit/commands/test.py new file mode 100644 index 000000000..50d3c6cfa --- /dev/null +++ b/server/eit/commands/test.py @@ -0,0 +1,109 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import darkgreen, teal +from entropy.server.interfaces import Server + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitTest(EitCommand): + """ + Main Eit test command. + """ + + NAME = "test" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._nsargs = None + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitTest.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitTest.NAME)) + + subparsers = parser.add_subparsers( + title="test", description=_("run given test"), + help=_("available tests")) + + deps_parser = subparsers.add_parser("deps", + help=_("dependencies test")) + deps_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + deps_parser.set_defaults(func=self._deptest) + + libs_parser = subparsers.add_parser("libs", + help=_("libraries test")) + libs_parser.add_argument("--dump", action="store_true", + default=False, help=_("dump results to file")) + libs_parser.set_defaults(func=self._libtest) + + links_parser = subparsers.add_parser("links", + help=_("library linking test (using repository metadata)")) + links_parser.add_argument("excllibs", nargs='*', default=None, + metavar="", + help=_("excluded soname")) + links_parser.set_defaults(func=self._linktest) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._nsargs = nsargs + return self._call_locked, [nsargs.func, None] + + def _deptest(self, entropy_server): + entropy_server.extended_dependencies_test( + entropy_server.repositories()) + return 0 + + def _libtest(self, entropy_server): + rc = entropy_server.test_shared_objects( + entropy_server.repository(), + dump_results_to_file = self._nsargs.dump) + return rc + + def _linktest(self, entropy_server): + srv_set = self._settings()[Server.SYSTEM_SETTINGS_PLG_ID]['server'] + base_repository_id = srv_set['base_repository_id'] + qa = entropy_server.QA() + rc = 0 + for repository_id in entropy_server.repositories(): + repo = entropy_server.open_repository(repository_id) + found_something = qa.test_missing_runtime_libraries( + entropy_server, + [(x, repository_id) for x in repo.listAllPackageIds()], + base_repository_id = base_repository_id, + excluded_libraries = self._nsargs.excllibs) + if found_something: + rc = 1 + return rc + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitTest, + EitTest.NAME, + _('run QA tests')) + ) From bf64eada7e8d8d21f01607888388c0451b80f7cc Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 15:09:41 +0200 Subject: [PATCH 33/99] [eit.commands.vacuum] new command "eit vacuum" --- server/eit/commands/vacuum.py | 91 +++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 server/eit/commands/vacuum.py diff --git a/server/eit/commands/vacuum.py b/server/eit/commands/vacuum.py new file mode 100644 index 000000000..9b7448284 --- /dev/null +++ b/server/eit/commands/vacuum.py @@ -0,0 +1,91 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import teal, purple + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitVacuum(EitCommand): + """ + Main Eit vacuum command. + """ + + NAME = "vacuum" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + # ask user before any critical operation + self._ask = True + self._pretend = False + self._days = 0 + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitVacuum.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitVacuum.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + parser.add_argument('--days', type=int, default=self._days, + help=_("expired since how many days, default: 0")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._ask = not nsargs.quick + self._days = nsargs.days + + return self._call_locked, [self._vacuum, nsargs.repo] + + def _vacuum(self, entropy_server): + """ + Actual vacuum code + """ + entropy_server.output("", level="warning") + entropy_server.output( + purple(_("Removing unavailable packages overriding defaults")), + importance=1, + level="warning") + entropy_server.output( + purple(_("Users with old repositories will need to update")), + importance=1, + level="warning") + entropy_server.output("", level="warning") + rc = entropy_server.Mirrors.tidy_mirrors( + entropy_server.repository(), ask = self._ask, + pretend = self._pretend, expiration_days = self._days) + if rc: + return 0 + return 1 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitVacuum, + EitVacuum.NAME, + _('clean expired/removed packages from repository')) + ) From 27edab19907efda764bf502c004a68edef7995d0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 15:17:40 +0200 Subject: [PATCH 34/99] [eit.commands.log] new command "eit log" --- server/eit/commands/log.py | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 server/eit/commands/log.py diff --git a/server/eit/commands/log.py b/server/eit/commands/log.py new file mode 100644 index 000000000..f5014b532 --- /dev/null +++ b/server/eit/commands/log.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import subprocess +import argparse + +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitLog(EitCommand): + """ + Main Eit log command. + """ + + NAME = "log" + ALIASES = [] + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitLog.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitLog.NAME)) + + parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + return self._call_locked, [self._log, nsargs.repo] + + def _log(self, entropy_server): + changelog_path = \ + entropy_server._get_local_repository_compressed_changelog_file( + entropy_server.repository()) + + if not (os.path.isfile(changelog_path) and \ + os.access(changelog_path, os.R_OK)): + entropy_server.output( + _("log is not available"), + importance=1, level="error") + return 1 + + proc = subprocess.Popen( + "/bin/bzcat \"%s\" | ${PAGER:-/usr/bin/less}" % ( + changelog_path,), shell = True) + return proc.wait() + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitLog, + EitLog.NAME, + _('show log for repository')) + ) From cbd3c90110fe08518eecf1bbbeabd37e1fbe0715 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 16:46:41 +0200 Subject: [PATCH 35/99] [eit.commands.inject] new command "eit inject" --- server/eit/commands/inject.py | 113 ++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 server/eit/commands/inject.py diff --git a/server/eit/commands/inject.py b/server/eit/commands/inject.py new file mode 100644 index 000000000..66d61267c --- /dev/null +++ b/server/eit/commands/inject.py @@ -0,0 +1,113 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import teal, purple + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitInject(EitCommand): + """ + Main Eit inject command. + """ + + NAME = "inject" + ALIASES = ["fit"] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitInject.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitInject.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package paths")) + parser.add_argument("--to", metavar="", + help=_("inject into given repository"), + default=None) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._packages += nsargs.packages + return self._call_locked, [self._inject, nsargs.to] + + def _inject(self, entropy_server): + """ + Actual Eit inject code. + """ + extensions = entropy_server.Spm_class( + ).binary_packages_extensions() + + etp_pkg_files = [] + for pkg_path in self._packages: + + pkg_path = os.path.realpath(pkg_path) + if not (os.path.isfile(pkg_path) and \ + os.access(pkg_path, os.R_OK)): + entropy_server.output( + "%s: %s" % (purple(pkg_path), + teal(_("no such file or directory"))), + importance=1, level="error") + return 1 + + found = False + for ext in extensions: + if pkg_path.endswith("."+ext): + etp_pkg_files.append(pkg_path) + found = True + break + if not found: + entropy_server.output( + "%s: %s" % (purple(pkg_path), + teal(_("unsupported extension"))), + importance=1, level="error") + return 1 + + if not etp_pkg_files: + entropy_server.output( + teal(_("no valid package paths")), + importance=1, level="error") + return 1 + + # in this case, no split package files are provided + repository_id = entropy_server.repository() + etp_pkg_files = [([x], True,) for x in etp_pkg_files] + package_ids = entropy_server.add_packages_to_repository( + repository_id, etp_pkg_files) + if package_ids: + # checking dependencies and print issues + entropy_server.extended_dependencies_test([repository_id]) + if package_ids: + return 0 + return 1 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitInject, + EitInject.NAME, + _('inject package files into repository')) + ) From 6afedef9c75bc8fef351286c87440c9a7a5b47bc Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 17:12:16 +0200 Subject: [PATCH 36/99] [eit.commands.remove] new command "eit remove" --- server/eit/commands/remove.py | 124 ++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 server/eit/commands/remove.py diff --git a/server/eit/commands/remove.py b/server/eit/commands/remove.py new file mode 100644 index 000000000..94c28ec8e --- /dev/null +++ b/server/eit/commands/remove.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import purple, darkgreen, brown, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitRemove(EitCommand): + """ + Main Eit remove command. + """ + + NAME = "remove" + ALIASES = ["rm"] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._from = None + self._nodeps = False + self._ask = True + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitRemove.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitRemove.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--from", metavar="", + help=_("inject into given repository"), + dest="fromrepo", default=None) + parser.add_argument("--nodeps", action="store_true", + help=_("do not include reverse dependencies"), + dest="nodeps", default=self._nodeps) + parser.add_argument("--quick", action="store_true", + default=not self._ask, + help=_("no stupid questions")) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._ask = not nsargs.quick + self._nodeps = nsargs.nodeps + self._from = nsargs.fromrepo + self._packages += nsargs.packages + return self._call_locked, [self._remove, self._from] + + def _remove(self, entropy_server): + """ + Actual Eit remove code. + """ + repository_id = entropy_server.repository() + repo = entropy_server.open_repository(repository_id) + pkg_matches = [] + for package in self._packages: + pkg = repo.atomMatch(package, multiMatch = True) + for pkg_id in pkg[0]: + pkg_match = (pkg_id, repository_id) + if pkg_match not in pkg_matches: + pkg_matches.append(pkg_match) + + if not pkg_matches: + entropy_server.output( + purple(_("No packages found")), + importance=1, level="error") + return 1 + + if not self._nodeps: + pkg_matches = entropy_server.get_reverse_queue(pkg_matches, + system_packages = False) + + entropy_server.output( + darkgreen( + _("These are the packages that would be removed") + ":"), + importance=1, header=brown(" @@ ")) + + repo_map = {} + for pkg_id, repo_id in pkg_matches: + repo = entropy_server.open_repository(repo_id) + pkgatom = repo.retrieveAtom(pkg_id) + entropy_server.output( + "[%s] %s" % (teal(repo_id), purple(pkgatom)), + header=brown(" # ")) + obj = repo_map.setdefault(repo_id, []) + obj.append(pkg_id) + + if self._ask: + resp = entropy_server.ask_question( + _("Would you like to continue ?")) + if resp == _("No"): + return 0 + + for repo_id, pkg_ids in repo_map.items(): + entropy_server.remove_packages(repo_id, pkg_ids) + + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitRemove, + EitRemove.NAME, + _('remove packages from repository')) + ) From d86b2f14cb3f2be3417661f0e6d3bfab5782c541 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:08:34 +0200 Subject: [PATCH 37/99] [entropy.db] EntropyRepository.commit: use readonly() method instead of bool variable to avoid superfluous commits --- libraries/entropy/db/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libraries/entropy/db/__init__.py b/libraries/entropy/db/__init__.py index de8521768..17556eefe 100644 --- a/libraries/entropy/db/__init__.py +++ b/libraries/entropy/db/__init__.py @@ -684,8 +684,9 @@ class EntropyRepository(EntropyRepositoryBase): def __show_info(self): first_part = " Date: Fri, 14 Oct 2011 18:09:22 +0200 Subject: [PATCH 38/99] [entropy.server] add new method: commit_repositories() --- libraries/entropy/server/interfaces/main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index e9e2949aa..01ceffb82 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -3906,6 +3906,16 @@ class Server(Client): if mask_clear: self._settings.clear() + def commit_repositories(self): + """ + Execute commit on all the open (in rw) repositories. + """ + srv_dbcache = self._server_dbcache + if srv_dbcache is not None: + for repo in srv_dbcache.values(): + # commit on readonly repos has no effect + repo.commit() + def close_repository(self, entropy_repository): """ Close single EntropyRepositoryBase instance, given its class object. From 49df75648a0fb328fcf3aa996c3885097b1b1f82 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:09:46 +0200 Subject: [PATCH 39/99] [eit.commands.add] add --quick switch --- server/eit/commands/add.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/eit/commands/add.py b/server/eit/commands/add.py index 12712ab8a..5b5d3cba0 100644 --- a/server/eit/commands/add.py +++ b/server/eit/commands/add.py @@ -41,6 +41,9 @@ class EitAdd(EitCommit): parser.add_argument("--to", metavar="", help=_("add to given repository"), default=None) + parser.add_argument("--quick", action="store_true", + default=not self._ask, + help=_("no stupid questions")) try: nsargs = parser.parse_args(self._args) @@ -48,6 +51,7 @@ class EitAdd(EitCommit): return parser.print_help, [] # setup atoms variable before spawning commit + self._ask = not nsargs.quick self._packages = nsargs.packages[:] return self._call_locked, [self._commit, nsargs.to] From df77559f6dba7538e259c9e673c99b5c6ccd9ebd Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:10:06 +0200 Subject: [PATCH 40/99] [eit.commands.commit] use commit_repositories() instead of close_repositories() --- server/eit/commands/commit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/eit/commands/commit.py b/server/eit/commands/commit.py index b256a24cd..a3f1d9cf4 100644 --- a/server/eit/commands/commit.py +++ b/server/eit/commands/commit.py @@ -56,7 +56,7 @@ class EitCommit(EitCommand): default=False, help=_("selectively pick changes")) parser.add_argument("--quick", action="store_true", - default=False, + default=not self._ask, help=_("no stupid questions")) try: @@ -349,7 +349,7 @@ class EitCommit(EitCommand): if idpackages: # checking dependencies and print issues entropy_server.extended_dependencies_test([repository_id]) - entropy_server.close_repositories() + entropy_server.commit_repositories() entropy_server.output(red("%s: " % (_("Statistics"),) ) + \ blue("%s: " % (_("Entries handled"),) ) + \ bold(str(len(idpackages))), From 89b02d512548eed7591b30b8d90002c63aaf1907 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:10:31 +0200 Subject: [PATCH 41/99] [eit.commands.inject] use commit_repositories() instead of close_repositories() --- server/eit/commands/inject.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/eit/commands/inject.py b/server/eit/commands/inject.py index 66d61267c..d8c8ffc8e 100644 --- a/server/eit/commands/inject.py +++ b/server/eit/commands/inject.py @@ -100,6 +100,8 @@ class EitInject(EitCommand): if package_ids: # checking dependencies and print issues entropy_server.extended_dependencies_test([repository_id]) + + entropy_server.commit_repositories() if package_ids: return 0 return 1 From 4d91a20607ac50a3bafe004ed175ffeba49d497c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:10:52 +0200 Subject: [PATCH 42/99] [eit.commands.deps] new command "eit deps" --- server/eit/commands/deps.py | 231 ++++++++++++++++++++++++++++++++++++ 1 file changed, 231 insertions(+) create mode 100644 server/eit/commands/deps.py diff --git a/server/eit/commands/deps.py b/server/eit/commands/deps.py new file mode 100644 index 000000000..448f2d0c5 --- /dev/null +++ b/server/eit/commands/deps.py @@ -0,0 +1,231 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.const import etpConst +from entropy.output import purple, darkgreen, brown, teal, blue + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitDeps(EitCommand): + """ + Main Eit deps command. + """ + + NAME = "deps" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitDeps.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitDeps.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--in", metavar="", + help=_("inject into given repository"), + dest="inrepo", default=None) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._packages += nsargs.packages + return self._call_locked, [self._deps, nsargs.inrepo] + + def _show_dependencies_legend(self, entropy_server, indent = None): + """ + Print dependency types legend. + """ + if indent is None: + indent = "" + dep_types = etpConst['dependency_type_ids'] + dep_descs = etpConst['dependency_type_ids_desc'] + + for dep_id, dep_val in sorted(dep_types.items(), + key = lambda x: x[0], reverse = True): + dep_desc = dep_descs.get(dep_id, _("N/A")) + txt = '%s%s%s%s %s' % ( + indent, teal("{"), dep_val+1, teal("}"), dep_desc,) + entropy_server.output(txt) + + def _show_package_dependencies(self, entropy_server, atom, + orig_deps, partial = False): + """ + Print package dependencies for atom. + """ + if not partial: + entropy_server.output( + "%s, %s" % ( + blue(atom), darkgreen(_("package dependencies"))), + header=brown(" @@ ")) + else: + entropy_server.output("") + + for dep_str, dep_id in orig_deps: + entropy_server.output( + "[%s: %s] %s" % ( + brown(_("type")), + darkgreen(str(dep_id+1)), + purple(dep_str)), + header=brown(" #")) + + if not orig_deps: + entropy_server.output( + _("No dependencies"), + header=brown(" # ")) + else: + self._show_dependencies_legend(entropy_server, " ") + + if partial: + entropy_server.output("") + + def _deps(self, entropy_server): + """ + Actual Eit deps code. + """ + repository_id = entropy_server.repository() + + # match + package_ids = [] + for package in self._packages: + match = entropy_server.atom_match( + package, match_repo = [repository_id]) + if match[1] == repository_id: + package_ids.append(match[0]) + else: + entropy_server.output( + "[%s] %s %s" % ( + purple(repository_id), + darkgreen(package), + teal(_("not found"))), + importance=1, level="warning") + if not package_ids: + entropy_server.output( + purple(_("No packages found")), + importance=1, level="error") + return 1 + + avail_dep_type_desc = [] + d_type_ids = etpConst['dependency_type_ids'] + d_type_desc = etpConst['dependency_type_ids_desc'] + for dep_val, dep_id in sorted(d_type_ids.items(), + key = lambda x: x[1]): + avail_dep_type_desc.append(d_type_desc[dep_val]) + + def pkg_dep_types_cb(s): + try: + avail_dep_type_desc.index(s[1]) + except IndexError: + return False + return True + + repo = entropy_server.open_repository(repository_id) + for package_id in package_ids: + atom = repo.retrieveAtom(package_id) + orig_deps = repo.retrieveDependencies( + package_id, extended = True, + resolve_conditional_deps = False) + dep_type_map = dict(orig_deps) + + def dep_check_cb(s): + input_params = [ + ('dep_type', ('combo', (_("Dependency type"), + avail_dep_type_desc),), + pkg_dep_types_cb, False) + ] + + data = entropy_server.input_box( + ("%s: %s" % (_('Select a dependency type for'), s,)), + input_params + ) + if data is None: + return False + + rc_dep_type = avail_dep_type_desc.index( + data['dep_type'][1]) + dep_type_map[s] = rc_dep_type + changes_made_type_map = {s: rc_dep_type} + + self._show_package_dependencies(entropy_server, + atom, changes_made_type_map.items(), partial = True) + return True + + self._show_package_dependencies( + entropy_server, atom, orig_deps) + + entropy_server.output("") + current_deps = [x[0] for x in orig_deps] + input_params = [ + ('new_deps', ('list', (_('Dependencies'), current_deps),), + dep_check_cb, True) + ] + data = entropy_server.input_box( + _("Dependencies editor"), input_params) + if data is None: + continue + + new_deps = data.get('new_deps', []) + orig_deps = [(x, dep_type_map[x],) for x in new_deps] + insert_deps = dict(orig_deps) + + self._show_package_dependencies( + entropy_server, atom, orig_deps) + rc_ask = entropy_server.ask_question(_("Confirm ?")) + if rc_ask == _("No"): + continue + + w_repo = entropy_server.open_server_repository( + repository_id, read_only = False) + + # save new dependencies + while True: + try: + w_repo.removeDependencies(package_id) + w_repo.insertDependencies(package_id, insert_deps) + w_repo.commit() + except (KeyboardInterrupt, SystemExit,): + continue + break + + # now bump, this makes EAPI=3 differential db sync happy + old_pkg_data = w_repo.getPackageData(package_id) + w_repo.handlePackage(old_pkg_data) + + entropy_server.output( + "%s: %s" % ( + blue(atom), + darkgreen(_("dependencies updated successfully"))), + header=brown(" @@ ")) + + entropy_server.commit_repositories() + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitDeps, + EitDeps.NAME, + _('edit dependencies for packages in repository')) + ) From a07a9683fa720fe99af02fa7ea1430f690e46532 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:38:31 +0200 Subject: [PATCH 43/99] [eit.commands.command] add _call_unlocked() method --- server/eit/commands/command.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index fe3cd52d2..b347fdc04 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -83,6 +83,24 @@ class EitCommand(object): entropy.tools.release_entropy_locks(server) server.shutdown() + def _call_unlocked(self, func, repo): + """ + Execute the given function at func after acquiring Entropy + Resources Lock, for given repository at repo. + The signature of func is: int func(entropy_server). + """ + server = None + try: + try: + server = self._entropy(default_repository=repo) + except PermissionDenied as err: + print_error(err.value) + return 1 + return func(server) + finally: + if server is not None: + server.shutdown() + def _settings(self): """ Return a SystemSettings instance. From 855efbe3a03c5b7c4ac830632c2aac73d9a0e666 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 18:38:56 +0200 Subject: [PATCH 44/99] [eit.commands.graph] new command "eit graph" --- server/eit/commands/graph.py | 75 ++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 server/eit/commands/graph.py diff --git a/server/eit/commands/graph.py b/server/eit/commands/graph.py new file mode 100644 index 000000000..a7e5b4ab3 --- /dev/null +++ b/server/eit/commands/graph.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitGraph(EitCommand): + """ + Main Eit graph command. + """ + + NAME = "graph" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._complete = False + # Import text_query from equo libraries + from text_query import graph_packages + self._graph_func = graph_packages + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitGraph.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitGraph.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--complete", action="store_true", + default=self._complete, + help=_('show system packages, build deps, circular deps')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._packages += nsargs.packages + self._complete = nsargs.complete + return self._call_unlocked, [self._graph, None] + + def _graph(self, entropy_server): + """ + Actual Eit graph code. + """ + return self._graph_func( + self._packages, entropy_server, + complete = self._complete, + repository_ids = entropy_server.repositories()) + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitGraph, + EitGraph.NAME, + _('show dependency graph for packages')) + ) From c4d8fdf87c2775da9b6bf2c5751a1f90267d9a87 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 22:35:04 +0200 Subject: [PATCH 45/99] [entropy.server] avoid using etpUi in library code --- libraries/entropy/server/interfaces/main.py | 4 ---- libraries/entropy/server/interfaces/mirrors.py | 5 +---- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 01ceffb82..76dd402a3 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -3977,8 +3977,6 @@ class Server(Client): self._save_default_repository(repository_id) self._setup_community_repositories_settings() - if not etpUi['quiet']: - self._show_interface_status() if handle_uninitialized and etpUi['warn']: self._handle_uninitialized_repository(repository_id) @@ -4130,8 +4128,6 @@ class Server(Client): self.close_repositories() self._settings.clear() self._setup_services() - if not etpUi['quiet']: - self._show_interface_status() return status def _is_repository_initialized(self, repo): diff --git a/libraries/entropy/server/interfaces/mirrors.py b/libraries/entropy/server/interfaces/mirrors.py index cbb71cb15..3a1ffa0c1 100644 --- a/libraries/entropy/server/interfaces/mirrors.py +++ b/libraries/entropy/server/interfaces/mirrors.py @@ -20,7 +20,7 @@ import multiprocessing from entropy.exceptions import EntropyPackageException from entropy.output import red, darkgreen, bold, brown, blue, darkred, \ darkblue, purple, teal -from entropy.const import etpConst, const_get_int, const_get_cpus, etpUi +from entropy.const import etpConst, const_get_int, const_get_cpus from entropy.cache import EntropyCacher from entropy.i18n import _ from entropy.misc import RSS, ParallelTask @@ -50,9 +50,6 @@ class Server(object): self.Cacher = EntropyCacher() self._settings = SystemSettings() - if not etpUi['quiet']: - self._show_interface_status(repository_id) - def _show_interface_status(self, repository_id): """ From cc6a2868e7e301b3dcc83f63bde19efadef69da3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 22:36:52 +0200 Subject: [PATCH 46/99] [eit.commands.status] fix indentation and explicitly print server config info --- server/eit/commands/status.py | 156 ++++++++++++++++++---------------- 1 file changed, 81 insertions(+), 75 deletions(-) diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index 0935c2930..d4e1545e1 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -51,97 +51,103 @@ class EitStatus(EitCommand): return self._call_locked, [self._status, nsargs.repo] def _status(self, entropy_server): - plugin_id = etpConst['system_settings_plugins_ids']['server_plugin'] - repos_data = self._settings()[plugin_id]['server']['repositories'] - repo_id = entropy_server.repository() - repo_data = repos_data[repo_id] - repo_rev = entropy_server.local_repository_revision(repo_id) - store_dir = entropy_server._get_local_store_directory(repo_id) - upload_basedir = entropy_server._get_local_upload_directory(repo_id) - upload_files, upload_packages = \ - entropy_server.Mirrors._calculate_local_upload_files(repo_id) - key_sorter = lambda x: \ - entropy_server.open_repository(x[1]).retrieveAtom(x[0]) + repo_id = entropy_server.repository() + # show interface info + entropy_server._show_interface_status() + entropy_server.Mirrors._show_interface_status( + repo_id) - to_be_added, to_be_removed, to_be_injected = \ - entropy_server.scan_package_changes() + plugin_id = etpConst['system_settings_plugins_ids']['server_plugin'] + repos_data = self._settings()[plugin_id]['server']['repositories'] - to_be_added = [x[0] for x in to_be_added] - to_be_added.sort() + repo_data = repos_data[repo_id] + repo_rev = entropy_server.local_repository_revision(repo_id) + store_dir = entropy_server._get_local_store_directory(repo_id) + upload_basedir = entropy_server._get_local_upload_directory(repo_id) + upload_files, upload_packages = \ + entropy_server.Mirrors._calculate_local_upload_files(repo_id) + key_sorter = lambda x: \ + entropy_server.open_repository(x[1]).retrieveAtom(x[0]) - toc = [] + to_be_added, to_be_removed, to_be_injected = \ + entropy_server.scan_package_changes() - toc.append("[%s] %s" % (purple(repo_id), - brown(repo_data['description']),)) - toc.append((" %s:" % (blue(_("local revision")),), - str(repo_rev),)) + to_be_added = [x[0] for x in to_be_added] + to_be_added.sort() - store_pkgs = [] - if os.path.isdir(store_dir): - store_pkgs = os.listdir(store_dir) + toc = [] - toc.append((" %s:" % (darkgreen(_("stored packages")),), - str(len(store_pkgs)),)) - for pkg_rel in sorted(store_pkgs): - toc.append((" ", brown(pkg_rel))) + toc.append("[%s] %s" % (purple(repo_id), + brown(repo_data['description']),)) + toc.append((" %s:" % (blue(_("local revision")),), + str(repo_rev),)) - toc.append((" %s:" % (darkgreen(_("upload packages")),), - str(upload_files),)) - for pkg_rel in sorted(upload_packages): - toc.append((" ", brown(pkg_rel))) + store_pkgs = [] + if os.path.isdir(store_dir): + store_pkgs = os.listdir(store_dir) - unstaged_len = len(to_be_added) + len(to_be_removed) + \ - len(to_be_injected) - toc.append((" %s:" % (darkgreen(_("unstaged packages")),), - str(unstaged_len),)) + toc.append((" %s:" % (darkgreen(_("stored packages")),), + str(len(store_pkgs)),)) + for pkg_rel in sorted(store_pkgs): + toc.append((" ", brown(pkg_rel))) - print_table(toc) - del toc[:] - entropy_server.output("") + toc.append((" %s:" % (darkgreen(_("upload packages")),), + str(upload_files),)) + for pkg_rel in sorted(upload_packages): + toc.append((" ", brown(pkg_rel))) - def _get_spm_slot_repo(pkg_atom): - try: - spm_slot = entropy_server.Spm( - ).get_installed_package_metadata(pkg_atom, "SLOT") - spm_repo = entropy_server.Spm( - ).get_installed_package_metadata(pkg_atom, - "repository") - except KeyError: - spm_repo = None - spm_slot = None - return spm_slot, spm_repo + unstaged_len = len(to_be_added) + len(to_be_removed) + \ + len(to_be_injected) + toc.append((" %s:" % (darkgreen(_("unstaged packages")),), + str(unstaged_len),)) - for pkg_atom in to_be_added: - spm_slot, spm_repo = _get_spm_slot_repo(pkg_atom) + print_table(toc) + del toc[:] + entropy_server.output("") - pkg_str = teal(pkg_atom) - if spm_repo is not None: - pkg_id, repo_id = entropy_server.atom_match(pkg_atom, - match_slot = spm_slot) - if pkg_id != -1: - etp_repo = entropy_server.open_repository( - repo_id).retrieveSpmRepository(pkg_id) - if etp_repo != spm_repo: - pkg_str += " [%s=>%s]" % ( - etp_repo, spm_repo,) - toc.append((" %s:" % (purple(_("add")),), teal(pkg_str))) + def _get_spm_slot_repo(pkg_atom): + try: + spm_slot = entropy_server.Spm( + ).get_installed_package_metadata(pkg_atom, "SLOT") + spm_repo = entropy_server.Spm( + ).get_installed_package_metadata(pkg_atom, + "repository") + except KeyError: + spm_repo = None + spm_slot = None + return spm_slot, spm_repo - for package_id, repo_id in sorted(to_be_removed, key = key_sorter): - pkg_atom = entropy_server.open_repository(repo_id - ).retrieveAtom(package_id) - toc.append((" %s:" % (darkred(_("remove")),), - brown(pkg_atom))) + for pkg_atom in to_be_added: + spm_slot, spm_repo = _get_spm_slot_repo(pkg_atom) - for package_id, repo_id in sorted(to_be_injected, - key = key_sorter): - pkg_atom = entropy_server.open_repository(repo_id - ).retrieveAtom( package_id) - toc.append((" %s:" % (bold(_("switch injected")),), - darkgreen(pkg_atom))) + pkg_str = teal(pkg_atom) + if spm_repo is not None: + pkg_id, repo_id = entropy_server.atom_match(pkg_atom, + match_slot = spm_slot) + if pkg_id != -1: + etp_repo = entropy_server.open_repository( + repo_id).retrieveSpmRepository(pkg_id) + if etp_repo != spm_repo: + pkg_str += " [%s=>%s]" % ( + etp_repo, spm_repo,) + toc.append((" %s:" % (purple(_("add")),), teal(pkg_str))) - print_table(toc) - return 0 + for package_id, repo_id in sorted(to_be_removed, key = key_sorter): + pkg_atom = entropy_server.open_repository( + repo_id).retrieveAtom(package_id) + toc.append((" %s:" % (darkred(_("remove")),), + brown(pkg_atom))) + + for package_id, repo_id in sorted(to_be_injected, + key = key_sorter): + pkg_atom = entropy_server.open_repository( + repo_id).retrieveAtom( package_id) + toc.append((" %s:" % (bold(_("switch injected")),), + darkgreen(pkg_atom))) + + print_table(toc) + return 0 EitCommandDescriptor.register( EitCommandDescriptor( From 53a3f9db841406ae4b57ff0c0a4f3afdb8b6981f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 22:37:21 +0200 Subject: [PATCH 47/99] [eit.commands.checkout] explicitly print server config after checkout --- server/eit/commands/checkout.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/eit/commands/checkout.py b/server/eit/commands/checkout.py index 883a2ce33..fe7a62d6c 100644 --- a/server/eit/commands/checkout.py +++ b/server/eit/commands/checkout.py @@ -54,6 +54,8 @@ class EitCheckout(EitCommand): repository_id = entropy_server.repository() entropy_server.switch_default_repository(repository_id, save = True) + # show interface info + entropy_server._show_interface_status() return 0 EitCommandDescriptor.register( From 6f0e6ae40e26eb89da4a55604ae822eacf9e7c3c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 22:37:44 +0200 Subject: [PATCH 48/99] [eit.commands.graph] add --quiet support --- server/eit/commands/graph.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/server/eit/commands/graph.py b/server/eit/commands/graph.py index a7e5b4ab3..2129348a7 100644 --- a/server/eit/commands/graph.py +++ b/server/eit/commands/graph.py @@ -13,6 +13,7 @@ import sys import argparse from entropy.i18n import _ +from entropy.const import etpUi from eit.commands.descriptor import EitCommandDescriptor from eit.commands.command import EitCommand @@ -33,6 +34,7 @@ class EitGraph(EitCommand): # Import text_query from equo libraries from text_query import graph_packages self._graph_func = graph_packages + self._quiet = False def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( @@ -47,12 +49,18 @@ class EitGraph(EitCommand): parser.add_argument("--complete", action="store_true", default=self._complete, help=_('show system packages, build deps, circular deps')) + parser.add_argument("--quiet", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) try: nsargs = parser.parse_args(self._args) except IOError: return parser.print_help, [] + self._quiet = nsargs.quiet + # support for code using etpUi (text_query) + etpUi['quiet'] = self._quiet self._packages += nsargs.packages self._complete = nsargs.complete return self._call_unlocked, [self._graph, None] From 3d43a4d2568b74688591eeee671a42d85389713a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 22:46:05 +0200 Subject: [PATCH 49/99] [eit.commands.repo] explicitly print server config info --- server/eit/commands/repo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/eit/commands/repo.py b/server/eit/commands/repo.py index 9148db61d..9aefac412 100644 --- a/server/eit/commands/repo.py +++ b/server/eit/commands/repo.py @@ -33,6 +33,9 @@ class EitRepo(EitCommand): return self._call_locked, [self._void, None] def _void(self, entropy_server): + entropy_server._show_interface_status() + entropy_server.Mirrors._show_interface_status( + entropy_server.repository()) return 0 EitCommandDescriptor.register( From d696845e4bba9b3801b32891f827bdf1f9411e20 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 23:14:59 +0200 Subject: [PATCH 50/99] [entropy.output] TextInterface.output: add output level "generic", using print_generic() --- libraries/entropy/output.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/entropy/output.py b/libraries/entropy/output.py index cb0d6e2a5..f8e3eba54 100644 --- a/libraries/entropy/output.py +++ b/libraries/entropy/output.py @@ -681,7 +681,7 @@ class TextInterface(object): 0, 1, 2, 3 @type importance: int @keyword level: message type (default valid values: "info", "warning", - "error") + "error", "generic") @type level: string @keyword count: tuple of lengh 2, containing count information to make function print something like "(10/100) doing stuff". In this case @@ -705,6 +705,8 @@ class TextInterface(object): myfunc = print_warning elif level == "error": myfunc = print_error + elif level == "generic": + myfunc = print_generic count_str = "" if count: From 8ac6fe12875b9a922583750c246aca54432c77c7 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 23:16:15 +0200 Subject: [PATCH 51/99] [eit.commands.list] new command "eit list" --- server/eit/commands/list.py | 124 ++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 server/eit/commands/list.py diff --git a/server/eit/commands/list.py b/server/eit/commands/list.py new file mode 100644 index 000000000..199edc1f3 --- /dev/null +++ b/server/eit/commands/list.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ +from entropy.output import brown, teal, purple, darkgreen, blue + +import entropy.dep + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitList(EitCommand): + """ + Main Eit list command. + """ + + NAME = "list" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._repositories = [] + self._quiet = False + self._verbose = False + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitList.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitList.NAME)) + + parser.add_argument("repo", nargs='+', default=None, + metavar="", help=_("repository")) + parser.add_argument("--quiet", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + parser.add_argument("--verbose", action="store_true", + default=self._verbose, + help=_('output more package info')) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._quiet = nsargs.quiet + self._verbose = nsargs.verbose + self._repositories += nsargs.repo + return self._call_unlocked, [self._list, None] + + def _list(self, entropy_server): + rc = 0 + avail_repos = entropy_server.repositories() + not_avail = [x for x in self._repositories if \ + x not in avail_repos] + if not_avail: + entropy_server.output( + "%s %s" % (brown(not_avail[0]), + purple(_("not available"))), + importance=1, level="error") + return 1 + + for repository_id in self._repositories: + self._list_packages(entropy_server, repository_id) + return 0 + + def _list_packages(self, entropy_server, repository_id): + """ + Actually do the freaking package listing and stfu. + """ + entropy_repository = entropy_server.open_repository(repository_id) + pkg_ids = entropy_repository.listAllPackageIds(order_by = "atom") + + for pkg_id in pkg_ids: + atom = entropy_repository.retrieveAtom(pkg_id) + if atom is None: + continue + if not self._verbose: + atom = entropy.dep.dep_getkey(atom) + + branchinfo = "" + sizeinfo = "" + if self._verbose: + branch = entropy_repository.retrieveBranch(pkg_id) + branchinfo = darkgreen(" [")+teal(branch)+darkgreen("] ") + mysize = entropy_repository.retrieveOnDiskSize(pkg_id) + mysize = entropy.tools.bytes_into_human(mysize) + sizeinfo = brown("[")+purple(mysize)+brown("]") + + if not self._quiet: + entropy_server.output( + "%s %s %s" % ( + sizeinfo, branchinfo, atom), + header="") + else: + entropy_server.output(atom, level="generic") + + if not pkg_ids and not self._quiet: + entropy_server.output( + darkgreen(_("No packages")), + header=brown(" @@ ")) + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitList, + EitList.NAME, + _("show repository status")) + ) From c7add16133646b1798b522df7231a7efef9244aa Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 23:48:27 +0200 Subject: [PATCH 52/99] [eit.commands.graph] add --in switch --- server/eit/commands/graph.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/server/eit/commands/graph.py b/server/eit/commands/graph.py index 2129348a7..62f1bcfb0 100644 --- a/server/eit/commands/graph.py +++ b/server/eit/commands/graph.py @@ -35,6 +35,7 @@ class EitGraph(EitCommand): from text_query import graph_packages self._graph_func = graph_packages self._quiet = False + self._repository_id = None def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( @@ -46,6 +47,9 @@ class EitGraph(EitCommand): parser.add_argument("packages", nargs='+', metavar="", help=_("package name")) + parser.add_argument("--in", metavar="", + help=_("search packages in given repository"), + dest="inrepo", default=None) parser.add_argument("--complete", action="store_true", default=self._complete, help=_('show system packages, build deps, circular deps')) @@ -63,16 +67,21 @@ class EitGraph(EitCommand): etpUi['quiet'] = self._quiet self._packages += nsargs.packages self._complete = nsargs.complete - return self._call_unlocked, [self._graph, None] + self._repository_id = nsargs.inrepo + return self._call_unlocked, [self._graph, self._repository_id] def _graph(self, entropy_server): """ Actual Eit graph code. """ + if self._repository_id is None: + repository_ids = entropy_server.repositories() + else: + repository_ids = [self._repository_id] return self._graph_func( self._packages, entropy_server, complete = self._complete, - repository_ids = entropy_server.repositories()) + repository_ids = repository_ids) EitCommandDescriptor.register( From 07fd931d3171cbc965058de420484cf49a06e21a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 14 Oct 2011 23:48:46 +0200 Subject: [PATCH 53/99] [eit.commands.revgraph] new command "eit revgraph" --- server/eit/commands/revgraph.py | 92 +++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 server/eit/commands/revgraph.py diff --git a/server/eit/commands/revgraph.py b/server/eit/commands/revgraph.py new file mode 100644 index 000000000..48d7f982f --- /dev/null +++ b/server/eit/commands/revgraph.py @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.const import etpUi + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitRevgraph(EitCommand): + """ + Main Eit revgraph command. + """ + + NAME = "revgraph" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._complete = False + # Import text_query from equo libraries + from text_query import revgraph_packages + self._graph_func = revgraph_packages + self._quiet = False + self._repository_id = None + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitRevgraph.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitRevgraph.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--in", metavar="", + help=_("search packages in given repository"), + dest="inrepo", default=None) + parser.add_argument("--complete", action="store_true", + default=self._complete, + help=_('show system packages, build deps, circular deps')) + parser.add_argument("--quiet", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._quiet = nsargs.quiet + # support for code using etpUi (text_query) + etpUi['quiet'] = self._quiet + self._packages += nsargs.packages + self._complete = nsargs.complete + self._repository_id = nsargs.inrepo + return self._call_unlocked, [self._revgraph, self._repository_id] + + def _revgraph(self, entropy_server): + """ + Actual Eit revgraph code. + """ + if self._repository_id is None: + repository_ids = entropy_server.repositories() + else: + repository_ids = [self._repository_id] + return self._graph_func( + self._packages, entropy_server, + complete = self._complete, + repository_ids = repository_ids) + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitRevgraph, + EitRevgraph.NAME, + _('show reverse dependency graph for packages')) + ) From 5396eee4c30517556cbc051092b2843760d17997 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 00:09:25 +0200 Subject: [PATCH 54/99] [eit.commands.command] add support for unprivileged commands execution --- server/eit/commands/command.py | 2 ++ server/eit/main.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index b347fdc04..54b49d50a 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -31,6 +31,8 @@ class EitCommand(object): ALIASES = [] # Set this to True if command is a catch-all (fallback) CATCH_ALL = False + # Allow unprivileged access ? + ALLOW_UNPRIVILEGED = False def __init__(self, args): self._args = args diff --git a/server/eit/main.py b/server/eit/main.py index b51de1eec..90a19fc82 100644 --- a/server/eit/main.py +++ b/server/eit/main.py @@ -69,8 +69,9 @@ def main(): allowed = True if os.getuid() != 0 and \ cmd_class is not catch_all: - cmd_class = catch_all - allowed = False + if not cmd_class.ALLOW_UNPRIVILEGED: + cmd_class = catch_all + allowed = False cmd_obj = cmd_class(args) func, func_args = cmd_obj.parse() From e2b1fad5bf3a214227ca37f86b09abf61f6654a5 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 00:10:16 +0200 Subject: [PATCH 55/99] [eit.commands.{list,log,repo,revgraph,status}] allow unprivileged execution --- server/eit/commands/graph.py | 1 + server/eit/commands/list.py | 1 + server/eit/commands/log.py | 1 + server/eit/commands/repo.py | 1 + server/eit/commands/revgraph.py | 1 + server/eit/commands/status.py | 1 + 6 files changed, 6 insertions(+) diff --git a/server/eit/commands/graph.py b/server/eit/commands/graph.py index 62f1bcfb0..22b0249dd 100644 --- a/server/eit/commands/graph.py +++ b/server/eit/commands/graph.py @@ -26,6 +26,7 @@ class EitGraph(EitCommand): NAME = "graph" ALIASES = [] + ALLOW_UNPRIVILEGED = True def __init__(self, args): EitCommand.__init__(self, args) diff --git a/server/eit/commands/list.py b/server/eit/commands/list.py index 199edc1f3..522cb6136 100644 --- a/server/eit/commands/list.py +++ b/server/eit/commands/list.py @@ -29,6 +29,7 @@ class EitList(EitCommand): NAME = "list" ALIASES = [] + ALLOW_UNPRIVILEGED = True def __init__(self, args): EitCommand.__init__(self, args) diff --git a/server/eit/commands/log.py b/server/eit/commands/log.py index f5014b532..e42da1c63 100644 --- a/server/eit/commands/log.py +++ b/server/eit/commands/log.py @@ -27,6 +27,7 @@ class EitLog(EitCommand): NAME = "log" ALIASES = [] + ALLOW_UNPRIVILEGED = True def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( diff --git a/server/eit/commands/repo.py b/server/eit/commands/repo.py index 9aefac412..34836d665 100644 --- a/server/eit/commands/repo.py +++ b/server/eit/commands/repo.py @@ -27,6 +27,7 @@ class EitRepo(EitCommand): NAME = "repo" ALIASES = [] + ALLOW_UNPRIVILEGED = True def parse(self): """ Overridden from EitRepo """ diff --git a/server/eit/commands/revgraph.py b/server/eit/commands/revgraph.py index 48d7f982f..7e514b6f2 100644 --- a/server/eit/commands/revgraph.py +++ b/server/eit/commands/revgraph.py @@ -26,6 +26,7 @@ class EitRevgraph(EitCommand): NAME = "revgraph" ALIASES = [] + ALLOW_UNPRIVILEGED = True def __init__(self, args): EitCommand.__init__(self, args) diff --git a/server/eit/commands/status.py b/server/eit/commands/status.py index d4e1545e1..b4a3191f0 100644 --- a/server/eit/commands/status.py +++ b/server/eit/commands/status.py @@ -31,6 +31,7 @@ class EitStatus(EitCommand): NAME = "status" ALIASES = ["st"] + ALLOW_UNPRIVILEGED = True def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( From de302fb138ac4eb806e44ae91c277f80123c611b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 00:18:55 +0200 Subject: [PATCH 56/99] [eit.commands.search] new command "eit search" --- server/eit/commands/search.py | 106 ++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 server/eit/commands/search.py diff --git a/server/eit/commands/search.py b/server/eit/commands/search.py new file mode 100644 index 000000000..f82037fe6 --- /dev/null +++ b/server/eit/commands/search.py @@ -0,0 +1,106 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import purple + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitSearch(EitCommand): + """ + Main Eit search command. + """ + + NAME = "search" + ALIASES = [] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._quiet = False + # text_query import augh + from text_query import print_package_info + self._pprinter = print_package_info + self._repository_id = None + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitSearch.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitSearch.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--in", metavar="", + help=_("search packages in given repository"), + dest="inrepo", default=None) + + parser.add_argument("--quiet", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._quiet = nsargs.quiet + self._packages += nsargs.packages + self._repository_id = nsargs.inrepo + return self._call_unlocked, [self._search, self._repository_id] + + def _search(self, entropy_server): + """ + Actual Eit search code. + """ + if self._repository_id is None: + repository_ids = entropy_server.repositories() + else: + repository_ids = [self._repository_id] + + for repository_id in repository_ids: + repo = entropy_server.open_repository(repository_id) + count = 0 + for package in self._packages: + results = repo.searchPackages( + package, order_by = "atom") + for result in results: + count += 1 + self._pprinter( + result[1], + entropy_server, + repo, + installed_search = True, + extended = True, + quiet = self._quiet + ) + + if not count and not self._quiet: + entropy_server.output( + purple(_("Nothing found")), + importance=1, level="warning") + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitSearch, + EitSearch.NAME, + _('show reverse dependency graph for packages')) + ) From ba2f185f7d7a8288a3cbff04c5f17bd02339e99d Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 00:30:38 +0200 Subject: [PATCH 57/99] [eit.commands.search] fix command description --- server/eit/commands/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/commands/search.py b/server/eit/commands/search.py index f82037fe6..48721825f 100644 --- a/server/eit/commands/search.py +++ b/server/eit/commands/search.py @@ -102,5 +102,5 @@ EitCommandDescriptor.register( EitCommandDescriptor( EitSearch, EitSearch.NAME, - _('show reverse dependency graph for packages')) + _('search packages in repositories')) ) From 504332a11d0476538962abd0a1f14e010906f7de Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 00:30:49 +0200 Subject: [PATCH 58/99] [eit.commands.match] new command "eit match" --- server/eit/commands/match.py | 107 +++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 server/eit/commands/match.py diff --git a/server/eit/commands/match.py b/server/eit/commands/match.py new file mode 100644 index 000000000..c961ae9ba --- /dev/null +++ b/server/eit/commands/match.py @@ -0,0 +1,107 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import purple + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitMatch(EitCommand): + """ + Main Eit match command. + """ + + NAME = "match" + ALIASES = [] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._quiet = False + # text_query import augh + from text_query import print_package_info + self._pprinter = print_package_info + self._repository_id = None + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitMatch.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitMatch.NAME)) + + parser.add_argument("packages", nargs='+', metavar="", + help=_("package name")) + parser.add_argument("--in", metavar="", + help=_("search packages in given repository"), + dest="inrepo", default=None) + + parser.add_argument("--quiet", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._quiet = nsargs.quiet + self._packages += nsargs.packages + self._repository_id = nsargs.inrepo + return self._call_unlocked, [self._match, self._repository_id] + + def _match(self, entropy_server): + """ + Actual Eit match code. + """ + if self._repository_id is None: + repository_ids = entropy_server.repositories() + else: + repository_ids = [self._repository_id] + + for repository_id in repository_ids: + repo = entropy_server.open_repository(repository_id) + count = 0 + for package in self._packages: + pkg_id, pkg_rc = repo.atomMatch(package) + if pkg_id == -1: + continue + + count += 1 + self._pprinter( + pkg_id, + entropy_server, + repo, + installed_search = True, + extended = True, + quiet = self._quiet + ) + + if not count and not self._quiet: + entropy_server.output( + purple(_("Nothing found")), + importance=1, level="warning") + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitMatch, + EitMatch.NAME, + _('match packages in repositories')) + ) From 7f821cb900b664372a32047c2858bf103fda739f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 10:26:50 +0200 Subject: [PATCH 59/99] [entropy.server] open_server_repository(): raise RepositoryError If repository_id is not available raise RepositoryError. This is a requirement for atom_match(), that handles the same exception. --- libraries/entropy/server/interfaces/main.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 76dd402a3..0b7403f43 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -22,7 +22,7 @@ import subprocess import stat from entropy.exceptions import OnlineMirrorError, PermissionDenied, \ - SystemDatabaseError + SystemDatabaseError, RepositoryError from entropy.const import etpConst, etpSys, const_setup_perms, \ const_create_working_dirs, etpUi, \ const_setup_file, const_get_stringtype, const_debug_write, \ @@ -4346,6 +4346,7 @@ class Server(Client): @type do_treeupdates: allow the execution of package names and slot updates @type do_treeupdates: bool + @raise RepositoryError: if repository doesn't exist @return: EntropyRepositoryBase instance @rtype: EntropyRepositoryBase """ @@ -4361,8 +4362,12 @@ class Server(Client): read_only = True no_upload = True - local_dbfile = self._get_local_repository_file(repository_id, - branch = use_branch) + try: + local_dbfile = self._get_local_repository_file( + repository_id, branch = use_branch) + except KeyError: + # repository not available + raise RepositoryError(repository_id) if do_cache: cached = self._server_dbcache.get( (repository_id, etpConst['systemroot'], local_dbfile, read_only, From fddf3e1cf257ea8418803637c0f5d0ab0d0b6b25 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 10:28:19 +0200 Subject: [PATCH 60/99] [eit.commands.match] directly expose output of Entropy.atom_match() --- server/eit/commands/match.py | 50 ++++++++++++++---------------------- 1 file changed, 19 insertions(+), 31 deletions(-) diff --git a/server/eit/commands/match.py b/server/eit/commands/match.py index c961ae9ba..206c1fbb2 100644 --- a/server/eit/commands/match.py +++ b/server/eit/commands/match.py @@ -35,7 +35,6 @@ class EitMatch(EitCommand): # text_query import augh from text_query import print_package_info self._pprinter = print_package_info - self._repository_id = None def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( @@ -47,9 +46,6 @@ class EitMatch(EitCommand): parser.add_argument("packages", nargs='+', metavar="", help=_("package name")) - parser.add_argument("--in", metavar="", - help=_("search packages in given repository"), - dest="inrepo", default=None) parser.add_argument("--quiet", action="store_true", default=self._quiet, @@ -62,40 +58,32 @@ class EitMatch(EitCommand): self._quiet = nsargs.quiet self._packages += nsargs.packages - self._repository_id = nsargs.inrepo - return self._call_unlocked, [self._match, self._repository_id] + return self._call_unlocked, [self._match, None] def _match(self, entropy_server): """ Actual Eit match code. """ - if self._repository_id is None: - repository_ids = entropy_server.repositories() - else: - repository_ids = [self._repository_id] + count = 0 + for package in self._packages: + pkg_id, pkg_repo = entropy_server.atom_match(package) + if pkg_id == -1: + continue - for repository_id in repository_ids: - repo = entropy_server.open_repository(repository_id) - count = 0 - for package in self._packages: - pkg_id, pkg_rc = repo.atomMatch(package) - if pkg_id == -1: - continue + count += 1 + self._pprinter( + pkg_id, + entropy_server, + entropy_server.open_repository(pkg_repo), + installed_search = True, + extended = True, + quiet = self._quiet + ) - count += 1 - self._pprinter( - pkg_id, - entropy_server, - repo, - installed_search = True, - extended = True, - quiet = self._quiet - ) - - if not count and not self._quiet: - entropy_server.output( - purple(_("Nothing found")), - importance=1, level="warning") + if not count and not self._quiet: + entropy_server.output( + purple(_("Nothing found")), + importance=1, level="warning") return 0 From cf990b6b7764700d8e42f87f390fa4a33f2fd2a2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 10:33:37 +0200 Subject: [PATCH 61/99] [eit.commands.{graph,list,match,revgraph,search}] add -q -v switch support (short form of --quiet, --verbose) --- server/eit/commands/graph.py | 2 +- server/eit/commands/list.py | 4 ++-- server/eit/commands/match.py | 2 +- server/eit/commands/revgraph.py | 2 +- server/eit/commands/search.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server/eit/commands/graph.py b/server/eit/commands/graph.py index 22b0249dd..e27d0125d 100644 --- a/server/eit/commands/graph.py +++ b/server/eit/commands/graph.py @@ -54,7 +54,7 @@ class EitGraph(EitCommand): parser.add_argument("--complete", action="store_true", default=self._complete, help=_('show system packages, build deps, circular deps')) - parser.add_argument("--quiet", action="store_true", + parser.add_argument("--quiet", "-q", action="store_true", default=self._quiet, help=_('quiet output, for scripting purposes')) diff --git a/server/eit/commands/list.py b/server/eit/commands/list.py index 522cb6136..c39da17cb 100644 --- a/server/eit/commands/list.py +++ b/server/eit/commands/list.py @@ -47,10 +47,10 @@ class EitList(EitCommand): parser.add_argument("repo", nargs='+', default=None, metavar="", help=_("repository")) - parser.add_argument("--quiet", action="store_true", + parser.add_argument("--quiet", "-q", action="store_true", default=self._quiet, help=_('quiet output, for scripting purposes')) - parser.add_argument("--verbose", action="store_true", + parser.add_argument("--verbose", "-v", action="store_true", default=self._verbose, help=_('output more package info')) diff --git a/server/eit/commands/match.py b/server/eit/commands/match.py index 206c1fbb2..b07f7c3b0 100644 --- a/server/eit/commands/match.py +++ b/server/eit/commands/match.py @@ -47,7 +47,7 @@ class EitMatch(EitCommand): parser.add_argument("packages", nargs='+', metavar="", help=_("package name")) - parser.add_argument("--quiet", action="store_true", + parser.add_argument("--quiet", "-q", action="store_true", default=self._quiet, help=_('quiet output, for scripting purposes')) diff --git a/server/eit/commands/revgraph.py b/server/eit/commands/revgraph.py index 7e514b6f2..4cae306ef 100644 --- a/server/eit/commands/revgraph.py +++ b/server/eit/commands/revgraph.py @@ -54,7 +54,7 @@ class EitRevgraph(EitCommand): parser.add_argument("--complete", action="store_true", default=self._complete, help=_('show system packages, build deps, circular deps')) - parser.add_argument("--quiet", action="store_true", + parser.add_argument("--quiet", "-q", action="store_true", default=self._quiet, help=_('quiet output, for scripting purposes')) diff --git a/server/eit/commands/search.py b/server/eit/commands/search.py index 48721825f..fefb53aba 100644 --- a/server/eit/commands/search.py +++ b/server/eit/commands/search.py @@ -51,7 +51,7 @@ class EitSearch(EitCommand): help=_("search packages in given repository"), dest="inrepo", default=None) - parser.add_argument("--quiet", action="store_true", + parser.add_argument("--quiet", "-q", action="store_true", default=self._quiet, help=_('quiet output, for scripting purposes')) From 836be5e538d21089c037ecd05de7541dd6f7001e Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 11:27:40 +0200 Subject: [PATCH 62/99] [eit.commands.own] new command "eit own" --- server/eit/commands/own.py | 93 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 server/eit/commands/own.py diff --git a/server/eit/commands/own.py b/server/eit/commands/own.py new file mode 100644 index 000000000..ff57ceb19 --- /dev/null +++ b/server/eit/commands/own.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.const import etpUi +from entropy.output import purple + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitOwn(EitCommand): + """ + Main Eit own command. + """ + + NAME = "own" + ALIASES = [] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._paths = [] + self._quiet = False + self._repository_id = None + # use text_query from equo library + from text_query import search_belongs + self._query_func = search_belongs + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitOwn.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitOwn.NAME)) + + parser.add_argument("paths", nargs='+', metavar="", + help=_("path")) + + parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + parser.add_argument("--in", metavar="", + help=_("search packages in given repository"), + dest="inrepo", default=None) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._quiet = nsargs.quiet + # search_belongs uses etpUi['quiet'] augh + etpUi['quiet'] = self._quiet + self._paths += nsargs.paths + self._repository_id = nsargs.inrepo + return self._call_unlocked, [self._own, self._repository_id] + + def _own(self, entropy_server): + """ + Actual Eit own code. + """ + if self._repository_id is None: + repository_ids = entropy_server.repositories() + else: + repository_ids = [self._repository_id] + exit_st = 1 + for repository_id in repository_ids: + repo = entropy_server.open_repository(repository_id) + sts = self._query_func(self._paths, entropy_server, repo) + if sts != 0: + exit_st = 1 + return exit_st + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitOwn, + EitOwn.NAME, + _('search packages owning paths')) + ) From 2885df330edeee007df8e31555cbe130095b464f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 15:12:25 +0200 Subject: [PATCH 63/99] [entropy.server.mirrors] add quiet keyword arg support to mirrors locking/unlocking methods --- .../entropy/server/interfaces/mirrors.py | 223 ++++++++++-------- 1 file changed, 121 insertions(+), 102 deletions(-) diff --git a/libraries/entropy/server/interfaces/mirrors.py b/libraries/entropy/server/interfaces/mirrors.py index 3a1ffa0c1..5986093bb 100644 --- a/libraries/entropy/server/interfaces/mirrors.py +++ b/libraries/entropy/server/interfaces/mirrors.py @@ -167,7 +167,7 @@ class Server(object): return branch_data def lock_mirrors(self, repository_id, lock, mirrors = None, - unlock_locally = True): + unlock_locally = True, quiet = False): """ Lock remote mirrors for given repository. In this way repository will be locked for both Entropy Server and Entropy Client instances. @@ -195,21 +195,22 @@ class Server(object): crippled_uri = EntropyTransceiver.get_uri_name(uri) - lock_text = _("unlocking") - if lock: - lock_text = _("locking") - self._entropy.output( - "[%s|%s] %s %s" % ( - brown(repository_id), - darkgreen(crippled_uri), - bold(lock_text), - blue("%s...") % (_("mirror"),), - ), - importance = 1, - level = "info", - header = brown(" * "), - back = True - ) + if not quiet: + lock_text = _("unlocking") + if lock: + lock_text = _("locking") + self._entropy.output( + "[%s|%s] %s %s" % ( + brown(repository_id), + darkgreen(crippled_uri), + bold(lock_text), + blue("%s...") % (_("mirror"),), + ), + importance = 1, + level = "info", + header = brown(" * "), + back = True + ) repo_relative = \ self._entropy._get_override_remote_repository_relative_path( @@ -225,40 +226,47 @@ class Server(object): txc = self._entropy.Transceiver(uri) txc.set_verbosity(False) + if quiet: + txc.set_silent(True) with txc as handler: if lock and handler.is_file(lock_file): - self._entropy.output( - "[%s|%s] %s" % ( + if not quiet: + self._entropy.output( + "[%s|%s] %s" % ( brown(repository_id), darkgreen(crippled_uri), blue(_("mirror already locked")), - ), - importance = 1, - level = "info", - header = darkgreen(" * ") - ) + ), + importance = 1, + level = "info", + header = darkgreen(" * ") + ) continue elif not lock and not handler.is_file(lock_file): - self._entropy.output( - "[%s|%s] %s" % ( + if not quiet: + self._entropy.output( + "[%s|%s] %s" % ( brown(repository_id), darkgreen(crippled_uri), blue(_("mirror already unlocked")), - ), - importance = 1, - level = "info", - header = darkgreen(" * ") - ) + ), + importance = 1, + level = "info", + header = darkgreen(" * ") + ) continue if lock: - rc_lock = self._do_mirror_lock(repository_id, uri, handler) + rc_lock = self._do_mirror_lock( + repository_id, uri, handler, quiet = quiet) else: - rc_lock = self._do_mirror_unlock(repository_id, uri, - handler, unlock_locally = unlock_locally) + rc_lock = self._do_mirror_unlock( + repository_id, uri, handler, + unlock_locally = unlock_locally, + quiet = quiet) if not rc_lock: done = False @@ -272,8 +280,8 @@ class Server(object): return done - def lock_mirrors_for_download(self, repository_id, lock, mirrors = None, - unlock_locally = True): + def lock_mirrors_for_download(self, repository_id, lock, + mirrors = None, unlock_locally = True, quiet = False): """ This functions makes Entropy clients unable to download the repository from given mirrors. @@ -300,21 +308,22 @@ class Server(object): crippled_uri = EntropyTransceiver.get_uri_name(uri) - lock_text = _("unlocking") - if lock: - lock_text = _("locking") - self._entropy.output( - "[%s|%s] %s %s..." % ( - blue(repository_id), - red(crippled_uri), - bold(lock_text), - blue(_("mirror for download")), + if not quiet: + lock_text = _("unlocking") + if lock: + lock_text = _("locking") + self._entropy.output( + "[%s|%s] %s %s..." % ( + blue(repository_id), + red(crippled_uri), + bold(lock_text), + blue(_("mirror for download")), ), - importance = 1, - level = "info", - header = red(" @@ "), - back = True - ) + importance = 1, + level = "info", + header = red(" @@ "), + back = True + ) lock_file = etpConst['etpdatabasedownloadlockfile'] repo_relative = \ @@ -330,6 +339,8 @@ class Server(object): txc = self._entropy.Transceiver(uri) txc.set_verbosity(False) + if quiet: + txc.set_silent(True) with txc as handler: @@ -360,18 +371,22 @@ class Server(object): continue if lock: - rc_lock = self._do_mirror_lock(repository_id, uri, handler, - dblock = False) + rc_lock = self._do_mirror_lock( + repository_id, uri, handler, + dblock = False, quiet = quiet) else: - rc_lock = self._do_mirror_unlock(repository_id, uri, + rc_lock = self._do_mirror_unlock( + repository_id, uri, handler, dblock = False, - unlock_locally = unlock_locally) + unlock_locally = unlock_locally, + quiet = quiet) if not rc_lock: done = False return done - def _do_mirror_lock(self, repository_id, uri, txc_handler, dblock = True): + def _do_mirror_lock(self, repository_id, uri, txc_handler, + dblock = True, quiet = False): repo_relative = \ self._entropy._get_override_remote_repository_relative_path( @@ -405,38 +420,40 @@ class Server(object): rc_upload = txc_handler.upload(lock_file, remote_path) if rc_upload: - self._entropy.output( - "[%s|%s] %s %s" % ( - blue(repository_id), - red(crippled_uri), - blue(_("mirror successfully locked")), - blue(lock_string), - ), - importance = 1, - level = "info", - header = red(" @@ ") - ) + if not quiet: + self._entropy.output( + "[%s|%s] %s %s" % ( + blue(repository_id), + red(crippled_uri), + blue(_("mirror successfully locked")), + blue(lock_string), + ), + importance = 1, + level = "info", + header = red(" @@ ") + ) else: - self._entropy.output( - "[%s|%s] %s: %s - %s %s" % ( - blue(repository_id), - red(crippled_uri), - blue("lock error"), - rc_upload, - blue(_("mirror not locked")), - blue(lock_string), - ), - importance = 1, - level = "error", - header = darkred(" * ") - ) + if not quiet: + self._entropy.output( + "[%s|%s] %s: %s - %s %s" % ( + blue(repository_id), + red(crippled_uri), + blue("lock error"), + rc_upload, + blue(_("mirror not locked")), + blue(lock_string), + ), + importance = 1, + level = "error", + header = darkred(" * ") + ) self._entropy._remove_local_repository_lockfile(repository_id) return rc_upload - def _do_mirror_unlock(self, repository_id, uri, txc_handler, dblock = True, - unlock_locally = True): + def _do_mirror_unlock(self, repository_id, uri, txc_handler, + dblock = True, unlock_locally = True, quiet = False): repo_relative = \ self._entropy._get_override_remote_repository_relative_path( @@ -460,16 +477,17 @@ class Server(object): rc_delete = txc_handler.delete(remote_path) if rc_delete: - self._entropy.output( - "[%s|%s] %s" % ( - blue(repository_id), - red(crippled_uri), - blue(_("mirror successfully unlocked")), - ), - importance = 1, - level = "info", - header = darkgreen(" * ") - ) + if not quiet: + self._entropy.output( + "[%s|%s] %s" % ( + blue(repository_id), + red(crippled_uri), + blue(_("mirror successfully unlocked")), + ), + importance = 1, + level = "info", + header = darkgreen(" * ") + ) if unlock_locally: if dblock: self._entropy._remove_local_repository_lockfile( @@ -478,18 +496,19 @@ class Server(object): self._entropy._remove_local_repository_download_lockfile( repository_id) else: - self._entropy.output( - "[%s|%s] %s: %s - %s" % ( - blue(repository_id), - red(crippled_uri), - blue(_("unlock error")), - rc_delete, - blue(_("mirror not unlocked")), - ), - importance = 1, - level = "error", - header = darkred(" * ") - ) + if not quiet: + self._entropy.output( + "[%s|%s] %s: %s - %s" % ( + blue(repository_id), + red(crippled_uri), + blue(_("unlock error")), + rc_delete, + blue(_("mirror not unlocked")), + ), + importance = 1, + level = "error", + header = darkred(" * ") + ) return rc_delete From 3bc58c86a41da72f3c0a0ae9d05977b9451284af Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 15:13:15 +0200 Subject: [PATCH 64/99] [entropy.transceivers.{ssh,ftp}] respect silent mode if enabled --- .../uri_handlers/plugins/interfaces/ftp_plugin.py | 6 ++++-- .../uri_handlers/plugins/interfaces/ssh_plugin.py | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ftp_plugin.py b/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ftp_plugin.py index 39efd9d31..ad697f8a2 100644 --- a/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ftp_plugin.py +++ b/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ftp_plugin.py @@ -286,7 +286,9 @@ class EntropyFtpUriHandler(EntropyUriHandler): self.__transfersize += buf_len def _update_progress(self, force = False): - + if self._silent: + # stfu ! + return upload_percent = 100.0 upload_size = round(self.__filekbcount, 1) @@ -671,4 +673,4 @@ class EntropyFtpUriHandler(EntropyUriHandler): def close(self): """ just call our disconnect method """ - self._disconnect() \ No newline at end of file + self._disconnect() diff --git a/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ssh_plugin.py b/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ssh_plugin.py index d5e29f65c..bbd85500e 100644 --- a/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ssh_plugin.py +++ b/libraries/entropy/transceivers/uri_handlers/plugins/interfaces/ssh_plugin.py @@ -136,6 +136,9 @@ class EntropySshUriHandler(EntropyUriHandler): self.output(current_txt, back = True, header = " ") def _update_progress(self, std_r): + if self._silent: + # stfu ! + return read_buf = "" try: char = std_r.read(1) From 8ec43d55f3ded0201b825b3377a23151461f7da3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 15:14:12 +0200 Subject: [PATCH 65/99] [eit.commands.lock] new commands "eit lock", "eit unlock" --- server/eit/commands/lock.py | 181 ++++++++++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 server/eit/commands/lock.py diff --git a/server/eit/commands/lock.py b/server/eit/commands/lock.py new file mode 100644 index 000000000..265f4526f --- /dev/null +++ b/server/eit/commands/lock.py @@ -0,0 +1,181 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import darkgreen, brown, teal, purple, blue, darkred +from entropy.transceivers import EntropyTransceiver + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitLock(EitCommand): + """ + Main Eit lock command. + """ + + NAME = "lock" + ALIASES = [] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._repository_id = None + self._action_lock = True + self._client = False + self._quiet = False + self._name = EitLock.NAME + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitLock.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], self._name)) + + parser.add_argument("repo", nargs=1, metavar="", + help=_("repository")) + + group = parser.add_mutually_exclusive_group() + group.add_argument( + "--client", action="store_true", default=False, + help=_('affect entropy clients only')) + group.add_argument( + "--status", action="store_true", default=False, + help=_('show current status')) + + parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._client = nsargs.client + self._repository_id = nsargs.repo[0] + self._quiet = nsargs.quiet + if nsargs.status: + return self._call_unlocked, [self._status, None] + if self._client: + return self._call_locked, [self._client_lock, + self._repository_id] + else: + return self._call_locked, [self._lock, self._repository_id] + + def _status(self, entropy_server): + """ + Actual Eit lock|unlock --status code. Just show repo status. + """ + if not self._quiet: + entropy_server.output( + "%s:" % (darkgreen(_("Mirrors status")),), + header=brown(" * ")) + + dbstatus = entropy_server.Mirrors.mirrors_status( + self._repository_id) + for uri, server_lock, client_lock in dbstatus: + + host = EntropyTransceiver.get_uri_name(uri) + if not self._quiet: + entropy_server.output( + "[%s]" % (purple(host),), + header=darkgreen(" @@ ")) + + if server_lock: + lock_str = darkred(_("Locked")) + quiet_lock_str = "locked" + else: + lock_str = darkgreen(_("Unlocked")) + quiet_lock_str = "unlocked" + if self._quiet: + entropy_server.output( + "%s server %s" % (host, quiet_lock_str), + level="generic") + else: + entropy_server.output( + "%s: %s" % (blue(_("server")), lock_str), + header=brown(" # ")) + + if client_lock: + lock_str = darkred(_("Locked")) + quiet_lock_str = "locked" + else: + lock_str = darkgreen(_("Unlocked")) + quiet_lock_str = "unlocked" + if self._quiet: + entropy_server.output( + "%s client %s" % (host, quiet_lock_str), + level="generic") + else: + entropy_server.output( + "%s: %s" % (blue(_("client")), lock_str), + header=brown(" # ")) + + return 0 + + def _lock(self, entropy_server): + """ + Actual Eit lock code. self._action_lock is determining if it's + lock or unlock. + """ + done = entropy_server.Mirrors.lock_mirrors( + self._repository_id, self._action_lock, + quiet = self._quiet) + if not done: + return 1 + return 0 + + def _client_lock(self, entropy_server): + """ + Actual Eit lock code (for --client only). + """ + done = entropy_server.Mirrors.lock_mirrors_for_download( + self._repository_id, self._action_lock, + quiet = self._quiet) + if not done: + return 1 + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitLock, + EitLock.NAME, + _('lock repository')) + ) + + +class EitUnlock(EitLock): + """ + Main Eit unlock command. + """ + + NAME = "unlock" + ALIASES = [] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitLock.__init__(self, args) + self._repository_id = None + self._action_lock = False + self._name = EitUnlock.NAME + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitUnlock, + EitUnlock.NAME, + _('unlock repository')) + ) From 97ac1693eea3ff7939fc33e10b288187ff6d5e96 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 18:49:26 +0200 Subject: [PATCH 66/99] [eit.commands.notice] new command "eit notice" --- server/eit/commands/notice.py | 375 ++++++++++++++++++++++++++++++++++ 1 file changed, 375 insertions(+) create mode 100644 server/eit/commands/notice.py diff --git a/server/eit/commands/notice.py b/server/eit/commands/notice.py new file mode 100644 index 000000000..7d382b05b --- /dev/null +++ b/server/eit/commands/notice.py @@ -0,0 +1,375 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import errno +import argparse +import tempfile + +from entropy.i18n import _ +from entropy.output import blue, darkred, darkgreen, purple, brown, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitNotice(EitCommand): + """ + Main Eit notice command. + """ + + NAME = "notice" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._repository_id = None + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitNotice.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitNotice.NAME)) + + subparsers = parser.add_subparsers( + title="action", description=_("execute given action"), + help=_("available actions")) + + add_parser = subparsers.add_parser("add", + help=_("add notice-board entry")) + add_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + add_parser.set_defaults(func=self._add) + + remove_parser = subparsers.add_parser("remove", + help=_("remove notice-board entry")) + remove_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + remove_parser.set_defaults(func=self._remove) + + show_parser = subparsers.add_parser("show", + help=_("show notice-board")) + show_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + show_parser.set_defaults(func=self._show) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._repository_id = nsargs.repo + return self._call_locked, [nsargs.func, self._repository_id] + + def _add_notice_editor(self, entropy_server, repository_id): + """ + Open $EDITOR and let user write his notice-board entry. + """ + notice_text = """ + +# Please enter the notice-board text above as follows: +# - the first line is considered the title +# - the following lines are considered the actual message +# body of the notice-board entry +# - the last line, if starting with URL: will be parsed as the +# actual notice-board entry URL +# - any line starting with "#" will be removed +# +# Example: +# [message title] +# [message +# body] +# URL: http:// +""" + notice_title = None + notice_body = "" + notice_url = None + tmp_path = None + while True: + + if tmp_path is None: + tmp_fd, tmp_path = tempfile.mkstemp( + prefix = 'entropy.server', + suffix = ".conf") + with os.fdopen(tmp_fd, "w") as tmp_f: + tmp_f.write(notice_text) + tmp_f.flush() + + success = entropy_server.edit_file(tmp_path) + if not success: + # retry ? + os.remove(tmp_path) + tmp_path = None + continue + + notice_title = None + notice_body = "" + notice_url = None + all_good = False + with open(tmp_path, "r") as tmp_f: + line = None + last_line = None + for line in tmp_f.readlines(): + if line.startswith("#"): + # skip + continue + strip_line = line.strip() + if not strip_line: + # ignore + continue + if notice_title is None: + notice_title = strip_line + continue + last_line = line + notice_body += line + if last_line is not None: + if last_line.startswith("URL:"): + url = last_line.strip()[4:].strip() + if url: + notice_url = url + # drop last line then + notice_body = notice_body[:-len(last_line)] + if notice_title and notice_body: + all_good = True + + if not all_good: + os.remove(tmp_path) + tmp_path = None + continue + + # show submitted info + entropy_server.output( + "%s: %s" % ( + darkgreen(_("Title")), + purple(notice_title)), + level="generic") + entropy_server.output("", level="generic") + entropy_server.output( + notice_body, level="generic") + url = notice_url + if url is None: + url = _("no URL") + entropy_server.output( + "%s: %s" % (teal(_("URL")), brown(url)), + level="generic") + entropy_server.output("", level="generic") + + # ask confirmation + while True: + try: + rc_question = entropy_server.ask_question( + "[%s] %s" % ( + purple(repository_id), + teal(_("Do you agree?")) + ), + responses = (_("Yes"), _("Repeat"), _("No"),) + ) + except KeyboardInterrupt: + # do not allow, we're in a critical region + continue + break + if rc_question == _("Yes"): + break + elif rc_question == _("No"): + return None, None, None + # otherwise repeat everything again + # keep tmp_path + + if tmp_path is not None: + try: + os.remove(tmp_path) + except (OSError) as err: + if err.errno != errno.ENOENT: + raise + + return notice_title, notice_body, notice_url + + def _add(self, entropy_server): + """ + Actual Eit notice add code. + """ + if self._repository_id is None: + self._repository_id = entropy_server.repository() + + notice_title, notice_body, notice_url = \ + self._add_notice_editor(entropy_server, self._repository_id) + if (notice_title is None) or (notice_body is None): + return 1 + + status = entropy_server.Mirrors.update_notice_board( + self._repository_id, notice_title, notice_body, + link = notice_url) + if status: + return 0 + return 1 + + def _remove(self, entropy_server): + """ + Actual Eit notice remove code. + """ + if self._repository_id is None: + self._repository_id = entropy_server.repository() + + data = entropy_server.Mirrors.read_notice_board( + self._repository_id) + if data is None: + entropy_server.output( + purple(_("Notice board not available")), + importance=1, level="error") + return 1 + + items, counter = data + changed = False + while True: + try: + sel = self._show_notice_selector( + entropy_server, + darkgreen(_("Choose the one you want to remove")), + items) + except KeyboardInterrupt: + break + + if (sel >= 0) and (sel <= counter): + self._show_notice(entropy_server, sel, items.get(sel)) + q_rc = entropy_server.ask_question( + _("Are you sure you want to remove this?")) + if q_rc == _("Yes"): + changed = True + entropy_server.Mirrors.remove_from_notice_board( + self._repository_id, sel) + data = entropy_server.Mirrors.read_notice_board( + self._repository_id, do_download = False) + items, counter = data + elif sel == -1: + break + + if changed or (counter == 0): + if counter == 0: + status = entropy_server.Mirrors.remove_notice_board( + self._repository_id) + else: + status = entropy_server.Mirrors.upload_notice_board( + self._repository_id) + if not status: + return 1 + return 0 + + def _show(self, entropy_server): + """ + Actual Eit notice show code. + """ + if self._repository_id is None: + self._repository_id = entropy_server.repository() + + data = entropy_server.Mirrors.read_notice_board( + self._repository_id) + if data is None: + entropy_server.output( + purple(_("Notice board not available")), + importance=1, level="error") + return 1 + + items, counter = data + while True: + try: + sel = self._show_notice_selector(entropy_server, '', items) + except KeyboardInterrupt: + return 0 + if (sel >= 0) and (sel <= counter): + self._show_notice(entropy_server, sel, items.get(sel)) + elif sel == -1: + return 0 + + return 0 + + def _show_notice(self, entropy_server, key, mydict): + """ + Print notice board entry content + """ + mytxt = "[%s] [%s]" % ( + blue(str(key)), + brown(mydict['pubDate']), + ) + entropy_server.output(mytxt) + entropy_server.output("", level="generic") + entropy_server.output( + "%s: %s" % (darkgreen(_("Title")), + purple(mydict['title'])), + level="generic") + + entropy_server.output("", level="generic") + entropy_server.output(mydict['description'], level="generic") + entropy_server.output("", level="generic") + + mytxt = "%s: %s" % ( + darkgreen(_("URL")), + blue(mydict['link']), + ) + entropy_server.output(mytxt) + + def fake_callback(dummy_s): + return True + + input_params = [ + ('idx', _('Press Enter to continue'), fake_callback, False) + ] + data = entropy_server.input_box( + '', input_params, cancel_button = True) + + def _show_notice_selector(self, entropy_server, title, mydict): + """ + Show notice board entries selector, return selected entry id. + """ + entropy_server.output("") + mykeys = sorted(mydict.keys()) + + for key in mykeys: + mydata = mydict.get(key) + mytxt = "[%s] [%s] %s: %s" % ( + blue(str(key)), + brown(mydata['pubDate']), + _("Title"), + darkred(mydata['title']), + ) + entropy_server.output(mytxt) + + entropy_server.output("") + mytxt = "[%s] %s" % ( + blue("-1"), + darkred(_("Exit/Commit")), + ) + entropy_server.output(mytxt) + + def fake_callback(s): + return s + input_params = [ + ('id', blue(_('Choose one by typing its identifier')), + fake_callback, False)] + data = entropy_server.input_box(title, input_params, + cancel_button = True) + if not isinstance(data, dict): + return -1 + try: + return int(data['id']) + except ValueError: + return -2 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitNotice, + EitNotice.NAME, + _('manage repository notice-board')) + ) From 5d391df063062b35f7595f2155ba801f1172740a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 18:50:37 +0200 Subject: [PATCH 67/99] [eit.commands.notice] trivial code style update --- server/eit/commands/notice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/commands/notice.py b/server/eit/commands/notice.py index 7d382b05b..092030e78 100644 --- a/server/eit/commands/notice.py +++ b/server/eit/commands/notice.py @@ -67,7 +67,7 @@ class EitNotice(EitCommand): try: nsargs = parser.parse_args(self._args) - except IOError as err: + except IOError: return parser.print_help, [] self._repository_id = nsargs.repo From bc2bd895a1888d4aa49de320c924b9867039019b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 20:40:39 +0200 Subject: [PATCH 68/99] [eit.commands.test] new command "eit test pkgs" --- server/eit/commands/test.py | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/server/eit/commands/test.py b/server/eit/commands/test.py index 50d3c6cfa..4ed651ae2 100644 --- a/server/eit/commands/test.py +++ b/server/eit/commands/test.py @@ -14,7 +14,7 @@ import os import argparse from entropy.i18n import _ -from entropy.output import darkgreen, teal +from entropy.output import darkgreen, teal, purple from entropy.server.interfaces import Server from eit.commands.descriptor import EitCommandDescriptor @@ -48,8 +48,6 @@ class EitTest(EitCommand): deps_parser = subparsers.add_parser("deps", help=_("dependencies test")) - deps_parser.add_argument("repo", nargs='?', default=None, - metavar="", help=_("repository")) deps_parser.set_defaults(func=self._deptest) libs_parser = subparsers.add_parser("libs", @@ -65,6 +63,15 @@ class EitTest(EitCommand): help=_("excluded soname")) links_parser.set_defaults(func=self._linktest) + pkgs_parser = subparsers.add_parser("pkgs", + help=_("verify local packages integrity")) + pkgs_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + pkgs_parser.add_argument("--quick", action="store_true", + default=False, + help=_("no stupid questions")) + pkgs_parser.set_defaults(func=self._pkgtest) + try: nsargs = parser.parse_args(self._args) except IOError as err: @@ -100,6 +107,25 @@ class EitTest(EitCommand): rc = 1 return rc + def _pkgtest(self, entropy_server): + repository_id = self._nsargs.repo + if repository_id is None: + repository_id = entropy_server.repository() + if repository_id not in entropy_server.repositories(): + entropy_server.output( + "%s: %s" % ( + purple(_("Invalid repository")), + teal(repository_id)), + importance=1, level="error") + return 1 + + fine, failed, dl_fine, dl_err = \ + entropy_server._verify_local_packages( + repository_id, [], ask = not self._nsargs.quick) + if failed: + return 1 + return 0 + EitCommandDescriptor.register( EitCommandDescriptor( From 26ca5f063690f9c66c1a4dcc4e07ee7d6382ef88 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 20:54:00 +0200 Subject: [PATCH 69/99] [Makefile] install eit instead of reagent, activator --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 648361fdf..a635f0d36 100644 --- a/Makefile +++ b/Makefile @@ -52,16 +52,15 @@ entropy-server-install: mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/server mkdir -p $(DESTDIR)/etc/entropy mkdir -p $(DESTDIR)$(PREFIX)/sbin + mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 - mkdir -p $(DESTDIR)$(PREFIX)/sbin install -m 644 conf/server.conf.example $(DESTDIR)/etc/entropy/ install -m 755 server/*.py $(DESTDIR)/$(LIBDIR)/entropy/server/ install -m 755 server/*.py $(DESTDIR)/$(LIBDIR)/entropy/server/ - install -m 755 server/eit $(DESTDIR)$(PREFIX)/sbin - ln -sf /$(LIBDIR)/entropy/server/reagent.py $(DESTDIR)$(PREFIX)/sbin/reagent - ln -sf /$(LIBDIR)/entropy/server/activator.py $(DESTDIR)$(PREFIX)/sbin/activator + cp server/eit $(DESTDIR)/$(LIBDIR)/entropy/server/ -Ra + ln -sf /$(LIBDIR)/entropy/server/eit.py $(DESTDIR)$(PREFIX)/bin/eit install -m 755 services/matter $(DESTDIR)$(PREFIX)/sbin # copy man pages From a576442c92e81fc0eab9a416ad730bbfd99fd060 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 21:01:06 +0200 Subject: [PATCH 70/99] [Makefile] do not use ln -sf, rather move the file in place instead --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a635f0d36..433fc2563 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ entropy-server-install: mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/server mkdir -p $(DESTDIR)/etc/entropy mkdir -p $(DESTDIR)$(PREFIX)/sbin - mkdir -p $(DESTDIR)$(PREFIX)/bin + mkdir -p $(DESTDIR)$(BINDIR) mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 conf/server.conf.example $(DESTDIR)/etc/entropy/ @@ -60,7 +60,7 @@ entropy-server-install: install -m 755 server/*.py $(DESTDIR)/$(LIBDIR)/entropy/server/ install -m 755 server/*.py $(DESTDIR)/$(LIBDIR)/entropy/server/ cp server/eit $(DESTDIR)/$(LIBDIR)/entropy/server/ -Ra - ln -sf /$(LIBDIR)/entropy/server/eit.py $(DESTDIR)$(PREFIX)/bin/eit + mv $(DESTDIR)/$(LIBDIR)/entropy/server/eit.py $(DESTDIR)$(BINDIR)/eit install -m 755 services/matter $(DESTDIR)$(PREFIX)/sbin # copy man pages @@ -81,11 +81,9 @@ equo-install: install -m 644 client/*.py $(DESTDIR)/$(LIBDIR)/entropy/client/ install -m 644 client/revision $(DESTDIR)/$(LIBDIR)/entropy/client/ - install -m 755 client/equo.py $(DESTDIR)/$(LIBDIR)/entropy/client/ + install -m 755 client/equo.py $(DESTDIR)/$(BINDIR)/equo install -m 755 services/kernel-switcher $(DESTDIR)$(BINDIR)/ - ln -sf /$(LIBDIR)/entropy/client/equo.py $(DESTDIR)$(BINDIR)/equo - # copy man page install -m 644 docs/man/man1/equo.1 $(DESTDIR)$(PREFIX)/share/man/man1/ From 44e7fc4d83f408d3730643f13eb68cb6a1e76351 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 22:57:47 +0200 Subject: [PATCH 71/99] [entropy.server] use codecs.open() with encoding="utf-8" with edit_file --- libraries/entropy/server/interfaces/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 0b7403f43..ae5c2e370 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -20,6 +20,7 @@ import errno import hashlib import subprocess import stat +import codecs from entropy.exceptions import OnlineMirrorError, PermissionDenied, \ SystemDatabaseError, RepositoryError @@ -4905,7 +4906,7 @@ class Server(Client): # parse the file back, build missing_deps all_good = True missing_deps = {} - with open(tmp_path, "r") as tmp_f: + with codecs.open(tmp_path, "r", encoding="utf-8") as tmp_f: pkg_match = None for line in tmp_f.readlines(): line = line.strip() From e02e34d61c637e41993ec0c6bb6752f15d5801d4 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 15 Oct 2011 22:58:24 +0200 Subject: [PATCH 72/99] [eit.commands.notice] use codecs.open() with encoding="utf-8" with edit_file --- server/eit/commands/notice.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/eit/commands/notice.py b/server/eit/commands/notice.py index 092030e78..6309a15e4 100644 --- a/server/eit/commands/notice.py +++ b/server/eit/commands/notice.py @@ -14,6 +14,7 @@ import os import errno import argparse import tempfile +import codecs from entropy.i18n import _ from entropy.output import blue, darkred, darkgreen, purple, brown, teal @@ -118,7 +119,7 @@ class EitNotice(EitCommand): notice_body = "" notice_url = None all_good = False - with open(tmp_path, "r") as tmp_f: + with codecs.open(tmp_path, "r", encoding="utf-8") as tmp_f: line = None last_line = None for line in tmp_f.readlines(): From 89bd32e8ac10173f9315a826215181ed685c6fbf Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 13:04:41 +0200 Subject: [PATCH 73/99] [eit.commands.key] new command "eit key" --- server/eit/commands/key.py | 497 +++++++++++++++++++++++++++++++++++++ 1 file changed, 497 insertions(+) create mode 100644 server/eit/commands/key.py diff --git a/server/eit/commands/key.py b/server/eit/commands/key.py new file mode 100644 index 000000000..edd083bde --- /dev/null +++ b/server/eit/commands/key.py @@ -0,0 +1,497 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.output import blue, purple, darkgreen, bold, brown, teal, \ + darkred +from entropy.const import const_convert_to_rawstring, etpConst +from entropy.i18n import _ +from entropy.security import Repository +from entropy.tools import convert_unix_time_to_human_time + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitKey(EitCommand): + """ + Main Eit key command. + """ + + NAME = "key" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._nsargs = None + self._gpg_msg_shown = False + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitKey.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitKey.NAME)) + + subparsers = parser.add_subparsers( + title="action", description=_("execute action"), + help=_("available actions")) + + create_parser = subparsers.add_parser("create", + help=_("create keypair for repository and packages")) + create_parser.add_argument("repo", metavar="", + help=_("repository")) + create_parser.set_defaults(func=self._create) + + delete_parser = subparsers.add_parser("delete", + help=_("delete keypair (and signatures) from repository")) + delete_parser.add_argument("repo", metavar="", + help=_("repository")) + delete_parser.set_defaults(func=self._delete) + + status_parser = subparsers.add_parser("status", + help=_("show keypair status for repository")) + status_parser.add_argument("repo", metavar="", + help=_("repository")) + status_parser.set_defaults(func=self._status) + + sign_parser = subparsers.add_parser("sign", + help=_("sign packages in repository using current keypair")) + sign_parser.add_argument("repo", metavar="", + help=_("repository")) + sign_parser.set_defaults(func=self._sign) + + import_parser = subparsers.add_parser("import", + help=_("import keypair, bind to given repository")) + import_parser.add_argument("repo", metavar="", + help=_("repository")) + import_parser.add_argument("privkey", + metavar="", type=file, + help=_("private key path")) + import_parser.add_argument("pubkey", + metavar="", type=file, + help=_("public key path")) + import_parser.set_defaults(func=self._import) + + export_pub_parser = subparsers.add_parser("export-public", + help=_("export the repository public key to file")) + export_pub_parser.add_argument("repo", metavar="", + help=_("repository")) + export_pub_parser.add_argument("key", + metavar="", type=argparse.FileType('w'), + help=_("public key path")) + export_pub_parser.set_defaults(func=self._export_pub) + + export_priv_parser = subparsers.add_parser("export-private", + help=_("export the repository private key to file")) + export_priv_parser.add_argument("repo", metavar="", + help=_("repository")) + export_priv_parser.add_argument("key", + metavar="", type=argparse.FileType('w'), + help=_("private key path")) + export_priv_parser.set_defaults(func=self._export_priv) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + sys.stderr.write("%s\n" % (err,)) + return parser.print_help, [] + + self._nsargs = nsargs + return self._call_locked, [nsargs.func, nsargs.repo] + + def __get_gpg(self, entropy_server): + obj = Repository() + if not self._gpg_msg_shown: + self._gpg_msg_shown = True + entropy_server.output("%s: %s" % ( + blue(_("GPG interface loaded, home directory")), + brown(Repository.GPG_HOME),) + ) + return obj + + def _get_gpg(self, entropy_server): + try: + repo_sec = self.__get_gpg(entropy_server) + except Repository.GPGError as err: + entropy_server.output("%s: %s" % ( + _("GnuPG not available"), err,), + level="error") + return None + return repo_sec + + def _create(self, entropy_server): + """ + Actual Eit key create code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + repo = entropy_server.repository() + + entropy_server.output("%s: %s" % ( + blue(_("Creating keys for repository")), purple(repo),)) + + if repo_sec.is_keypair_available(repo): + entropy_server.output("%s: %s" % ( + blue(_("Another key already exists for repository")), + purple(repo), + ), + level = "warning" + ) + answer = entropy_server.ask_question( + _("Would you like to continue?")) + if answer == _("No"): + return 1 + + def mycb(sstr): + return sstr + + def mycb_int(sstr): + try: + int(sstr) + except ValueError: + return False + return True + + def mycb_ok(sstr): + return True + + input_data = [ + ('name_email', purple(_("Insert e-mail")), mycb, False), + ('expiration', + purple(_("Insert expiration days (0=no expiration)")), + mycb_int, False), + ('pass', purple(_("Insert passphrase (empty=no passphrase)")), + mycb_ok, False), + ] + data = entropy_server.input_box( + blue("%s") % (_("Repository GPG keypair creation"),), + input_data, cancel_button = True) + + if not data: + return 1 + elif not isinstance(data, dict): + return 1 + + if not data['pass']: + data['pass'] = None + else: + data['pass'] = const_convert_to_rawstring(data['pass']) + key_fp = repo_sec.create_keypair(repo, passphrase = data['pass'], + name_email = data['name_email'], + expiration_days = int(data['expiration'])) + entropy_server.output("%s: %s" % ( + darkgreen(_("Produced GPG key with fingerprint")), + bold(key_fp), + ), + level = "info" + ) + entropy_server.output("%s: %s" % ( + darkgreen(_("Now you should sign all the packages in it")), + blue(repo), + ), + level = "warning" + ) + entropy_server.output( + darkgreen( + _("Generate a revoke key and store it in a safe place")), + level = "warning" + ) + entropy_server.output( + "# gpg --homedir '%s' --armor --output revoke.asc --gen-revoke '%s'" % ( + Repository.GPG_HOME, key_fp), + level = "info" + ) + entropy_server.output("%s" % ( + darkgreen( + _("You may want to send your keys to a key server")), + ), + level = "info" + ) + + # remove signatures from repository database + dbconn = entropy_server.open_server_repository( + repo, read_only = False) + dbconn.dropGpgSignatures() + return 0 + + def _delete(self, entropy_server): + """ + Actual Eit key delete code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + repo = entropy_server.repository() + + entropy_server.output("%s: %s" % ( + blue(_("Deleting keys for repository")), purple(repo),)) + + if not repo_sec.is_keypair_available(repo): + entropy_server.output("%s: %s" % ( + blue(_("No keys available for given repository")), + purple(repo), + ), + level = "warning" + ) + return 0 + + answer = entropy_server.ask_question(_("Are you really sure?")) + if answer == _("No"): + return 1 + + try: + key_meta = repo_sec.get_key_metadata(repo) + except KeyError: + entropy_server.output("%s: %s" % ( + darkgreen(_("Keys metadata not available for")), + bold(repo), + ), + level = "error" + ) + return 1 + + # remove signatures from repository database + dbconn = entropy_server.open_server_repository( + repo, read_only = False) + dbconn.dropGpgSignatures() + + repo_sec.delete_keypair(repo) + entropy_server.output("%s: %s" % ( + darkgreen(_("Deleted GPG key with fingerprint")), + bold(key_meta['fingerprint']), + ), + level = "info" + ) + return 0 + + def _status(self, entropy_server): + """ + Actual Eit key status code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + repo = entropy_server.repository() + + try: + key_meta = repo_sec.get_key_metadata(repo) + except KeyError: + entropy_server.output("%s: %s" % ( + darkgreen(_("Keys metadata not available for")), + bold(repo), + ), + level = "error" + ) + return 1 + + entropy_server.output("%s: %s" % ( + brown(_("GPG information for repository")), + bold(repo), + ), + level = "info" + ) + + def just_print(mystr): + return purple(mystr) + + def print_list(myl): + return purple(' '.join(myl)) + + def print_date(mydate): + if not mydate: + return _("N/A") + try: + return convert_unix_time_to_human_time(int(mydate)) + except (ValueError, TypeError,): + return _("N/A") + + out_data = [ + ('uids', _("Description"), print_list), + ('keyid', _("Public key identifier"), just_print), + ('fingerprint', _("Public key fingerprint"), just_print), + ('length', _("Key size"), just_print), + ('date', _("Creation date"), print_date), + ('expires', _("Expires on"), print_date), + ] + for key_id, key_desc, out_func in out_data: + entropy_server.output("%s: %s" % ( + teal(key_desc), out_func(key_meta[key_id]),)) + + return 0 + + def _sign(self, entropy_server): + """ + Actual Eit key sign code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + repo = entropy_server.repository() + + errors, fine, failed = entropy_server.sign_local_packages( + repo, ask = True) + if errors: + return 1 + + return 0 + + def _import(self, entropy_server): + """ + Actual Eit key import code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + repo = entropy_server.repository() + privkey_path = self._nsargs.privkey.name + pubkey_path = self._nsargs.pubkey.name + # no need to close files here + + entropy_server.output("%s: %s" % ( + blue(_("Importing keypair")), + purple(repo),)) + + if repo_sec.is_keypair_available(repo): + entropy_server.output( + "%s: %s" % ( + blue(_("Another keypair already exists")), + purple(repo), + ), + level = "error" + ) + return 1 + + # install private key + finger_print = repo_sec.install_key(repo, privkey_path) + repo_sec.install_key(repo, pubkey_path, + ignore_nothing_imported = True) + + entropy_server.output("%s: %s" % ( + darkgreen(_("Imported GPG key with fingerprint")), + bold(finger_print), + ), + level = "info" + ) + entropy_server.output("%s: %s" % ( + darkgreen(_("Now sign all the packages in it")), + blue(repo), + ), + level = "warning" + ) + + return 0 + + def _export_pub(self, entropy_server): + """ + Actual Eit key export-public code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + # close file to avoid truncation on exit + key_path = self._nsargs.key.name + self._nsargs.key.close() + + return self.__export_key( + entropy_server, repo_sec, True, entropy_server.repository(), + key_path) + + return 0 + + def _export_priv(self, entropy_server): + """ + Actual Eit key export-private code. + """ + repo_sec = self._get_gpg(entropy_server) + if repo_sec is None: + return 1 + # close file to avoid truncation on exit + key_path = self._nsargs.key.name + self._nsargs.key.close() + + return self.__export_key( + entropy_server, repo_sec, False, entropy_server.repository(), + key_path) + + def __export_key(self, entropy_server, repo_sec, is_pubkey, repo, + store_path): + """ + Internal key export logic. + """ + key_msg = _("Exporting private key for repository") + func_check = repo_sec.is_privkey_available + if is_pubkey: + func_check = repo_sec.is_pubkey_available + key_msg = _("Exporting public key for repository") + + try: + if not func_check(repo): + entropy_server.output("%s: %s" % ( + blue(_("No keypair available for repository")), + purple(repo), + ), + level = "error" + ) + return 1 + except repo_sec.KeyExpired: + entropy_server.output("%s: %s" % ( + darkred(_("Keypair is EXPIRED for repository")), + purple(repo), + ), + level = "error" + ) + return 1 + + entropy_server.output("%s: %s" % (blue(key_msg), purple(repo),)) + if is_pubkey: + key_stream = repo_sec.get_pubkey(repo) + else: + key_stream = repo_sec.get_privkey(repo) + + # write to file + try: + with open(store_path, "w") as dest_w: + dest_w.write(key_stream) + dest_w.flush() + except IOError as err: + entropy_server.output("%s: %s [%s]" % ( + darkgreen( + _("Unable to export GPG key for repository")), + bold(repo), + err, + ), + level = "error" + ) + return 1 + + entropy_server.output("%s: %s [%s]" % ( + darkgreen(_("Exported GPG key for repository")), + bold(repo), + brown(store_path), + ), + level = "info" + ) + + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitKey, + EitKey.NAME, + _('manage repository GPG keys')) + ) From fb66baae9a620bad979700db9dadbec2fd09dc2c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 13:17:21 +0200 Subject: [PATCH 74/99] [activator] goodbye, RIP --- server/activator.py | 187 ----------- server/server_activator.py | 631 ------------------------------------- 2 files changed, 818 deletions(-) delete mode 100644 server/activator.py delete mode 100644 server/server_activator.py diff --git a/server/activator.py b/server/activator.py deleted file mode 100644 index fddb83080..000000000 --- a/server/activator.py +++ /dev/null @@ -1,187 +0,0 @@ -#!/usr/bin/python2 -O -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server}. - -""" - -import os, sys -sys.path.insert(0, '../libraries') -sys.path.insert(1, '../client') -sys.path.insert(2, '../server') -sys.path.insert(3, '/usr/lib/entropy/client') -sys.path.insert(4, '/usr/lib/entropy/libraries') -sys.path.insert(5, '/usr/lib/entropy/server') -from entropy.i18n import _ -import entropy.tools -from entropy.output import red, is_stdout_a_tty, nocolor, print_generic, \ - etpUi, print_error, darkgreen -from entropy.const import etpConst, const_kill_threads -from entropy.server.interfaces import Server -from text_tools import print_menu - -def get_entropy_server(): - return Server(community_repo = etpConst['community']['mode']) - -help_opts = [ - None, - (0, " ~ activator ~ ", 1, - 'Entropy Package Manager - (C) %s' % (entropy.tools.get_year(),) ), - None, - (0, _('Basic Options'), 0, None), - None, - (1, '--help', 2, _('this output')), - (1, '--version', 1, _('print version')), - (1, '--nocolor', 1, _('disable colorized output')), - (1, '--color', 2, _('force colorized output')), - None, - (0, _('Application Options'), 0, None), - None, - (1, 'sync', 3, _('sync packages, database and also do some tidy')), - (2, '--branch=', 1, _('choose on what branch operating')), - (2, '--noask', 3, _('do not ask anything except critical things')), - (2, '--syncall', 2, _('sync all the configured repositories')), - (1, 'syncas ', 1, _('same as sync, but put repository database ONLY into a dummy repository')), - None, - (1, 'tidy', 3, _('remove binary packages not in repositories and expired')), - None, - (1, 'packages', 2, _('package repositories handling functions')), - (2, 'sync', 3, _('sync package repositories across primary mirrors')), - (3, '--ask', 3, _('ask before making any changes')), - (3, '--pretend', 2, _('only show what would be done')), - (3, '--syncall', 2, _('sync all the configured repositories')), - (3, '--do-packages-check', 1, _('also verify packages integrity')), - None, - (1, 'repo', 3, _('repository handling functions')), - (2, 'sync', 3, _('sync the current repository database across primary mirrors')), - (3, '--syncall', 1, _('sync all the configured repositories')), - (2, 'syncas ', 1, _('same as sync, but put repository database ONLY into a dummy repository')), - (2, 'vacuum', 3, _('clean unavailable packages from mirrors (similar to tidy, but more nazi)')), - (3, '--days=', 1, _('expiration days [default is: 0, dangerous!]')), - (2, 'lock', 3, _('lock the current repository database (server-side)')), - (2, 'unlock', 3, _('unlock the current repository database (server-side)')), - (2, 'download-lock', 2, _('lock the current repository database (client-side)')), - (2, 'download-unlock', 2, _('unlock the current repository database (client-side)')), - (2, 'lock-status', 2, _('show current lock status')), - - None, - (1, 'notice', 3, _('notice board handling functions')), - (2, 'add', 2, _('add a news item to the notice board')), - (2, 'remove', 2, _('remove a news item from the notice board')), - (2, 'read', 2, _('read the current notice board')), - None, -] - -options = sys.argv[1:] - -def handle_exception(exc_class, exc_instance, exc_tb): - - # restore original exception handler, to avoid loops - uninstall_exception_handler() - entropy.tools.kill_threads() - - if exc_class is KeyboardInterrupt: - raise SystemExit(1) - - # always slap exception data (including stack content) - entropy.tools.print_exception(tb_data = exc_tb) - - raise exc_instance - -def install_exception_handler(): - sys.excepthook = handle_exception - -def uninstall_exception_handler(): - sys.excepthook = sys.__excepthook__ - -# print version -if ("--version" in options) or ("-V" in options): - print_generic("activator: "+etpConst['entropyversion']) - raise SystemExit(0) - -import re -opt_r = re.compile("^(\\-)([a-z]+)$") -for n in range(len(options)): - if opt_r.match(options[n]): - x = options[n] - del options[n] - options.extend(["-%s" % (d,) for d in x[1:]]) - -# preliminary options parsing -_options = [] -force_color = False -for opt in options: - if opt in ["--nocolor", "-N"]: - nocolor() - elif opt in ["--color", "-C"]: - force_color = True - elif opt in ["--quiet", "-q"]: - etpUi['quiet'] = True - elif opt in ["--verbose", "-v"]: - etpUi['verbose'] = True - elif opt in ["--ask", "-a"]: - etpUi['ask'] = True - elif opt in ["--pretend", "-p"]: - etpUi['pretend'] = True - else: - _options.append(opt) -options = _options - -# Check if we need to disable colors -if (not force_color) and (not is_stdout_a_tty()): - nocolor() - -# print help -if not options or ("--help" in options) or ("-h" in options): - print_menu(help_opts) - if len(options) < 1: - print_error("not enough parameters") - raise SystemExit(1) - -rc = -10 -if not entropy.tools.is_root(): - print_error("you must be root in order to run activator") - rc = 2 - -main_cmd = options.pop(0) -install_exception_handler() - -if main_cmd == "sync": - import server_activator - rc = server_activator.sync(options) - -if main_cmd == "syncas": - import server_activator - rc = server_activator.syncas(options) - -elif main_cmd == "tidy": - import server_activator - rc = server_activator.sync(options, just_tidy = True) - -elif main_cmd == "repo": - import server_activator - rc = server_activator.repo(options) - -elif main_cmd == "packages": - import server_activator - rc = server_activator.packages(options) - -# database tool -elif main_cmd == "notice": - import server_activator - rc = server_activator.notice(options) - -if rc == -10: - print_menu(help_opts) - print_error(red(" %s." % (_("Wrong parameters"),) )) - rc = 10 - -uninstall_exception_handler() -const_kill_threads() -raise SystemExit(rc) diff --git a/server/server_activator.py b/server/server_activator.py deleted file mode 100644 index 7645cdd39..000000000 --- a/server/server_activator.py +++ /dev/null @@ -1,631 +0,0 @@ -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server}. - -""" -import os -import tempfile -import subprocess -from entropy.const import etpConst, etpUi -from entropy.output import red, green, print_info, bold, darkgreen, blue, \ - darkred, brown, purple, teal, print_error, print_warning, readtext, \ - print_generic -from entropy.server.interfaces import Server, ServerSystemSettingsPlugin -from entropy.server.interfaces.rss import ServerRssMetadata -from entropy.transceivers import EntropyTransceiver -from entropy.i18n import _ - -import entropy.tools - -def get_entropy_server(): - """ - Return Entropy Server interface object. - """ - return Server(community_repo = etpConst['community']['mode']) - -DEFAULT_REPO_COMMIT_MSG = """ -# This is Entropy Server repository commit message handler. -# Please friggin' enter the commit message for your changes. Lines starting -# with '#' will be ignored. To avoid encoding issue, write stuff in plain ASCII. -""" - -def sync(options, just_tidy = False): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _sync(server, options, just_tidy, None) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def syncas(options, just_tidy = False): - if not options: - return -10 - # syncas, validate args - as_repository_id = options[0] - if not entropy.tools.validate_repository_id(as_repository_id): - return -10 - - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _sync(server, [], just_tidy, as_repository_id) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _sync(entropy_server, options, just_tidy, as_repository_id): - - do_noask = False - sync_all = False - myopts = [] - for opt in options: - if opt == "--noask": - do_noask = True - elif opt == "--syncall": - sync_all = True - elif opt.startswith("--"): - return -10 - else: - myopts.append(opt) - options = myopts - - print_info(green(" * ")+red("%s ..." % ( - _("Starting to sync data across mirrors (packages/database)"),) )) - - repository_id = entropy_server.repository() - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_data = entropy_server.Settings()[sys_settings_plugin_id]['server'] - rss_enabled = srv_data['rss']['enabled'] - repos = [repository_id] - if sync_all: - repos = entropy_server.repositories() - - rc = 0 - for repo in repos: - - # avoid __default__ - if repo == etpConst['clientserverrepoid']: - continue - - errors = False - if not just_tidy: - - mirrors_tainted, mirrors_errors, successfull_mirrors, \ - broken_mirrors, check_data = \ - entropy_server.Mirrors.sync_packages( - repo, ask = not do_noask, pretend = etpUi['pretend']) - - if mirrors_errors and not successfull_mirrors: - errors = True - print_error(darkred(" !!! ")+red(_("Aborting !"))) - continue - - if not successfull_mirrors: - continue - - if mirrors_tainted and (as_repository_id is None): - - if (not do_noask) and rss_enabled: - tmp_fd, tmp_commit_path = tempfile.mkstemp( - prefix="activator._sync", suffix=".COMMIT_MSG") - with os.fdopen(tmp_fd, "w") as tmp_f: - tmp_f.write(DEFAULT_REPO_COMMIT_MSG) - if successfull_mirrors: - tmp_f.write("# Changes to be committed:\n") - for sf_mirror in sorted(successfull_mirrors): - tmp_f.write("#\t updated: %s\n" % (sf_mirror,)) - - # spawn editor - cm_msg_rc = entropy_server.edit_file(tmp_commit_path) - if not cm_msg_rc: - # wtf?, fallback to old way - ServerRssMetadata()['commitmessage'] = \ - readtext(">> %s: " % ( - _("Please insert a commit message"),) ) - else: - commit_msg = '' - with open(tmp_commit_path, "r") as tmp_f: - for line in tmp_f.readlines(): - if line.strip().startswith("#"): - continue - commit_msg += line - print_generic(commit_msg) - ServerRssMetadata()['commitmessage'] = commit_msg - - os.remove(tmp_commit_path) - - elif rss_enabled: - ServerRssMetadata()['commitmessage'] = "Automatic update" - - if as_repository_id is not None: - # change repository push location - ServerSystemSettingsPlugin.set_override_remote_repository( - entropy_server.Settings(), repo, as_repository_id) - - sts = _sync_remote_databases(entropy_server, repo) - if sts == 0: - # do not touch locking - entropy_server.Mirrors.lock_mirrors(repo, False, - unlock_locally = (as_repository_id is None)) - if (sts == 0) and not do_noask: - q_rc = entropy_server.ask_question( - _("Should I continue with the tidy procedure ?")) - if q_rc == _("No"): - continue - elif sts != 0: - errors = True - print_error(darkred(" !!! ")+red(_("Aborting !"))) - continue - - if not errors: - entropy_server.Mirrors.tidy_mirrors(repo, ask = not do_noask, - pretend = etpUi['pretend']) - else: - rc = 1 - - return rc - -def packages(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _packages(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _packages(entropy_server, options): - - sync_all = False - do_pkg_check = False - for opt in options: - if opt == "--do-packages-check": - do_pkg_check = True - elif opt == "--syncall": - sync_all = True - elif opt.startswith("--"): - return -10 - - if not options: - return -10 - - repository_id = entropy_server.repository() - - if options[0] == "sync": - - repos = [repository_id] - if sync_all: - repos = entropy_server.repositories() - - rc = 0 - for repo in repos: - - # avoid __default__ - if repo == etpConst['clientserverrepoid']: - continue - - mirrors_tainted, mirrors_errors, successfull_mirrors, \ - broken_mirrors, check_data = entropy_server.Mirrors.sync_packages( - repo, ask = etpUi['ask'], - pretend = etpUi['pretend'], - packages_check = do_pkg_check) - - if mirrors_errors: - rc = 1 - - return rc - - return -10 - -def notice(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _notice(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _notice(entropy_server, options): - - if not options: - return -10 - - def show_notice(key, mydict): - - mytxt = "[%s] [%s] %s: %s" % ( - blue(str(key)), - brown(mydict['pubDate']), - _("Title"), - darkred(mydict['title']), - ) - print_info(mytxt) - - mytxt = "\t%s: %s" % ( - darkgreen(_("Content")), - blue(mydict['description']), - ) - print_info(mytxt) - mytxt = "\t%s: %s" % ( - darkgreen(_("Link")), - blue(mydict['link']), - ) - print_info(mytxt) - - def fake_callback(s): - return True - - input_params = [('idx', _('Press Enter to continue'), fake_callback, False)] - data = entropy_server.input_box('', input_params, cancel_button = True) - - - def show_notice_selector(title, mydict): - print_info('') - mykeys = sorted(mydict.keys()) - - for key in mykeys: - mydata = mydict.get(key) - mytxt = "[%s] [%s] %s: %s" % ( - blue(str(key)), - brown(mydata['pubDate']), - _("Title"), - darkred(mydata['title']), - ) - print_info(mytxt) - - print_info('') - mytxt = "[%s] %s" % ( - blue("-1"), - darkred(_("Exit/Commit")), - ) - print_info(mytxt) - - def fake_callback(s): - return s - input_params = [('id', blue(_('Choose one by typing its identifier')), - fake_callback, False)] - data = entropy_server.input_box(title, input_params, - cancel_button = True) - if not isinstance(data, dict): - return -1 - try: - return int(data['id']) - except ValueError: - return -2 - - repository_id = entropy_server.repository() - - if options[0] == "add": - - def fake_callback(s): - return s - - def fake_callback_tr(s): - return True - - input_params = [ - ('title', _('Title'), fake_callback, False), - ('text', _('Notice text'), fake_callback, False), - ('url', _('Relevant URL (optional)'), fake_callback_tr, False), - ] - - data = entropy_server.input_box(blue("%s") % ( - _("Repository notice board, new item insertion"),), - input_params, cancel_button = True) - if data is None: - return 0 - status = entropy_server.Mirrors.update_notice_board( - repository_id, data['title'], data['text'], - link = data['url']) - if status: - return 0 - return 1 - - elif options[0] == "read": - - data = entropy_server.Mirrors.read_notice_board(repository_id) - if data is None: - print_error(darkred(" * ")+blue("%s" % ( - _("Notice board not available"),) )) - return 1 - items, counter = data - while True: - try: - sel = show_notice_selector('', items) - except KeyboardInterrupt: - return 0 - if (sel >= 0) and (sel <= counter): - show_notice(sel, items.get(sel)) - elif sel == -1: - return 0 - - return 0 - - elif options[0] == "remove": - - data = entropy_server.Mirrors.read_notice_board(repository_id) - if data is None: - print_error(darkred(" * ")+blue("%s" % ( - _("Notice board not available"),) )) - return 1 - items, counter = data - changed = False - while True: - try: - sel = show_notice_selector( - darkgreen(_("Choose the one you want to remove")), items) - except KeyboardInterrupt: - break - if (sel >= 0) and (sel <= counter): - show_notice(sel, items.get(sel)) - q_rc = entropy_server.ask_question( - _("Are you sure you want to remove this?")) - if q_rc == _("Yes"): - changed = True - entropy_server.Mirrors.remove_from_notice_board( - repository_id, sel) - data = entropy_server.Mirrors.read_notice_board( - repository_id, do_download = False) - items, counter = data - elif sel == -1: - break - - if changed or (counter == 0): - if counter == 0: - status = entropy_server.Mirrors.remove_notice_board( - repository_id) - else: - status = entropy_server.Mirrors.upload_notice_board( - repository_id) - if not status: - return 1 - return 0 - - return -10 - -def repo(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _repo(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _repo(entropy_server, options): - - if not options: - return -10 - - cmd, args = options[0], options[1:] - - repository_id = entropy_server.repository() - - if cmd == "lock": - - print_info(green(" * ")+green("%s ..." % ( - _("Starting to lock mirrors databases"),) )) - done = entropy_server.Mirrors.lock_mirrors(repository_id, True) - rc = 0 - if not done: - rc = 1 - print_info(green(" * ")+red("%s !" % ( - _("A problem occured on at least one mirror"),) )) - else: - print_info(green(" * ")+green(_("Repositories lock complete"))) - return rc - - elif cmd == "unlock": - - print_info(green(" * ")+green("%s ..." % ( - _("Starting to unlock mirrors databases"),))) - done = entropy_server.Mirrors.lock_mirrors(repository_id, False) - rc = 0 - if not done: - rc = 1 - print_info(green(" * ")+green("%s !" % ( - _("A problem occured on at least one mirror"),) )) - else: - print_info(green(" * ")+green( - _("Repositories unlock complete"))) - return rc - - elif cmd == "download-lock": - - print_info(green(" * ")+green("%s ..." % ( - _("Starting to lock download mirrors databases"),) )) - done = entropy_server.Mirrors.lock_mirrors_for_download( - repository_id, True) - rc = 0 - if not done: - rc = 1 - print_info(green(" * ")+green("%s !" % ( - _("A problem occured on at least one mirror"),) )) - else: - print_info(green(" * ")+green(_("Download mirrors lock complete"))) - return rc - - elif cmd == "download-unlock": - - print_info(green(" * ")+green("%s ..." % ( - _("Starting to unlock download mirrors databases"),) )) - done = entropy_server.Mirrors.lock_mirrors_for_download(repository_id, - False) - rc = 0 - if not done: - rc = 1 - print_info(green(" * ")+green("%s ..." % ( - _("A problem occured on at least one mirror"),) )) - else: - print_info(green(" * ")+green(_("Download mirrors unlock complete"))) - return rc - - elif cmd == "lock-status": - - print_info(brown(" * ")+green("%s:" % (_("Mirrors status table"),) )) - dbstatus = entropy_server.Mirrors.mirrors_status(repository_id) - for db in dbstatus: - if (db[1]): - db[1] = red(_("Locked")) - else: - db[1] = green(_("Unlocked")) - if (db[2]): - db[2] = red(_("Locked")) - else: - db[2] = green(_("Unlocked")) - host = EntropyTransceiver.get_uri_name(db[0]) - print_info(bold("\t"+host+": ") + red("[") + \ - brown("%s: " % (_("DATABASE"),) ) + db[1] + red("] [") + \ - brown("%s: " % (_("DOWNLOAD"),) ) + db[2] + red("]")) - return 0 - - elif cmd in ("sync", "syncas"): - - repos = [repository_id] - as_repository_id = None - if cmd == "sync": - if "--syncall" in args: - repos = entropy_server.repositories() - elif not args: - # syncas without repo - return -10 - elif len(args) > 1: - # syncas, too many args - return -10 - else: - # syncas, validate args - as_repository_id = args[0] - if not entropy.tools.validate_repository_id(as_repository_id): - return -10 - - # change repository push location - ServerSystemSettingsPlugin.set_override_remote_repository( - entropy_server.Settings(), repository_id, as_repository_id) - - rc = 0 - for repo in repos: - - # avoid __default__ - if repo == etpConst['clientserverrepoid']: - continue - - if as_repository_id is not None: - print_info("%s %s %s => %s" % ( - green(" *"), teal(_("Syncing repository")), - purple(repo), bold(as_repository_id),)) - else: - print_info("%s %s %s" % ( - green(" *"), teal(_("Syncing repository")), - purple(repo),)) - sts = _sync_remote_databases(entropy_server, repo) - if sts != 0: - print_error(darkred(" !!! ") + \ - green(_("Repositories sync error, cannot continue."))) - rc = 1 - - return rc - - elif cmd == "vacuum": - - days = 0 - for arg in args: - if arg.startswith("--days="): - s_days = arg[len("--days="):] - try: - days = int(s_days) - if days < 0: - raise ValueError() - except ValueError: - return -10 - break - else: - return -10 - - print_info(green(" * ")+darkgreen("%s ..." % ( - _("Cleaning unavailable packages from repository"),) )) - print_warning(teal(" * ") + \ - purple(_("Removing unavailable packages, overriding Entropy defaults is generally bad."))) - print_warning(teal(" * ") + \ - purple(_("Users with outdated repositories, won't be able to find package files remotely."))) - sts = entropy_server.Mirrors.tidy_mirrors(repository_id, ask = True, - pretend = etpUi['pretend'], expiration_days = days) - if sts: - return 0 - return 1 - - return -10 - -def _sync_remote_databases(entropy_server, repository_id): - - print_info(green(" * ")+red("%s:" % ( - _("Remote Entropy Repository Status"),) )) - remote_db_status = entropy_server.Mirrors.remote_repository_status( - repository_id) - for url, revision in remote_db_status.items(): - host = EntropyTransceiver.get_uri_name(url) - print_info(green(" %s: " % (_("Host"),) )+bold(host)) - print_info(red(" * %s: " % (_("Revision"),) ) + \ - blue(str(revision))) - - local_revision = entropy_server.local_repository_revision(repository_id) - print_info(red(" * %s: " % ( - _("Local revision currently at"),) ) + \ - blue(str(local_revision))) - - # do the rest - sts = entropy_server.Mirrors.sync_repository(repository_id) - - print_info(darkgreen(" * ")+red("%s:" % ( - _("Remote Entropy Repository Status"),) )) - remote_status = entropy_server.Mirrors.remote_repository_status( - repository_id) - for url, revision in remote_status.items(): - host = EntropyTransceiver.get_uri_name(url) - print_info(darkgreen(" %s: " % (_("Host"),) )+bold(host)) - print_info(red(" * %s: " % (_("Revision"),) ) + \ - blue(str(revision))) - - return sts From e92fc8a16350eae9a17ffed0a80ca821f9e8db10 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 13:18:10 +0200 Subject: [PATCH 75/99] [server] drop server_key module --- server/server_key.py | 393 ------------------------------------------- 1 file changed, 393 deletions(-) delete mode 100644 server/server_key.py diff --git a/server/server_key.py b/server/server_key.py deleted file mode 100644 index 49a154e57..000000000 --- a/server/server_key.py +++ /dev/null @@ -1,393 +0,0 @@ -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server GPG Keys text interface}. - -""" -from entropy.output import blue, purple, darkgreen, bold, brown, teal, darkred -from entropy.const import const_convert_to_rawstring, etpConst -from entropy.server.interfaces import Server -from entropy.security import Repository -from entropy.i18n import _ -from entropy.tools import convert_unix_time_to_human_time - -GPG_MSG_SHOWN = False - -def get_gpg(entropy_srv): - obj = Repository() - global GPG_MSG_SHOWN - if not GPG_MSG_SHOWN: - entropy_srv.output("%s: %s" % ( - blue(_("GPG interface loaded, home directory")), - brown(Repository.GPG_HOME),) - ) - GPG_MSG_SHOWN = True - return obj - -def key(myopts): - - if not myopts: - return -10 - cmd = myopts.pop(0) - - rc = -10 - entropy_srv = Server() - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - sys_set = entropy_srv.Settings()[sys_settings_plugin_id]['server'] - avail_repos = sys_set['repositories'] - - def validate_repos(repos, entropy_srv): - for repo in repos: - if repo not in avail_repos: - entropy_srv.output("'%s' %s" % ( - blue(repo), _("repository not available"),), - level = "error") - return 1 - return 0 - - try: - - repos = myopts - if cmd in ("create", "delete", "sign", "import", "export") and not \ - repos: - return rc - elif cmd in ("create", "delete", "sign",): - v_rc = validate_repos(repos, entropy_srv) - if v_rc != 0: - return v_rc - - try: - repo_sec = get_gpg(entropy_srv) - except Repository.GPGError as err: - entropy_srv.output("%s: %s" % ( - _("GnuPG not available"), err,), - level = "error") - return 1 - - if cmd == "create" and repos: - for repo in repos: - rc = _create_keys(entropy_srv, repo) - if rc != 0: - break - - elif cmd == "delete" and repos: - for repo in repos: - rc = _delete_keys(entropy_srv, repo) - if rc != 0: - break - - elif cmd == "status": - if not repos: - repo_sec = get_gpg(entropy_srv) - repos = sorted(repo_sec.get_keys(private = True)) - for repo in repos: - rc = _show_status(entropy_srv, repo) - if rc != 0: - break - - elif cmd == "sign" and repos: - for repo in repos: - rc = _sign_packages(entropy_srv, repo) - if rc != 0: - break - - elif cmd == "import" and len(repos) == 3: - rc = _import_key(entropy_srv, repos[0], repos[1], repos[2]) - - elif cmd == "export-public" and len(repos) == 2: - rc = _export_key(entropy_srv, True, repos[0], repos[1]) - - elif cmd == "export-private" and len(repos) == 2: - rc = _export_key(entropy_srv, False, repos[0], repos[1]) - - finally: - if entropy_srv is not None: - entropy_srv.shutdown() - - del entropy_srv - return rc - - -def _import_key(entropy_srv, repo, privkey_path, pubkey_path): - - entropy_srv.output("%s: %s" % ( - blue(_("Importing keypair for repository")), purple(repo),)) - - repo_sec = get_gpg(entropy_srv) - if repo_sec.is_keypair_available(repo): - entropy_srv.output("%s: %s" % ( - blue(_("Another keypair already exists for repository")), - purple(repo), - ), - level = "error" - ) - return 1 - - # install private key - finger_print = repo_sec.install_key(repo, privkey_path) - repo_sec.install_key(repo, pubkey_path, ignore_nothing_imported = True) - - entropy_srv.output("%s: %s" % ( - darkgreen(_("Imported GPG key with fingerprint")), - bold(finger_print), - ), - level = "info" - ) - entropy_srv.output("%s: %s" % ( - darkgreen(_("Now you should sign all the packages in it")), - blue(repo), - ), - level = "warning" - ) - - return 0 - -def _export_key(entropy_srv, is_pubkey, repo, store_path): - - repo_sec = get_gpg(entropy_srv) - - key_msg = _("Exporting private key for repository") - func_check = repo_sec.is_privkey_available - if is_pubkey: - func_check = repo_sec.is_pubkey_available - key_msg = _("Exporting public key for repository") - - try: - if not func_check(repo): - entropy_srv.output("%s: %s" % ( - blue(_("No keypair available for repository")), - purple(repo), - ), - level = "error" - ) - return 1 - except repo_sec.KeyExpired: - entropy_srv.output("%s: %s" % ( - darkred(_("Keypair is EXPIRED for repository")), - purple(repo), - ), - level = "error" - ) - return 1 - - entropy_srv.output("%s: %s" % (blue(key_msg), purple(repo),)) - if is_pubkey: - key_stream = repo_sec.get_pubkey(repo) - else: - key_stream = repo_sec.get_privkey(repo) - - # write to file - try: - with open(store_path, "w") as dest_w: - dest_w.write(key_stream) - dest_w.flush() - except IOError as err: - entropy_srv.output("%s: %s [%s]" % ( - darkgreen(_("Unable to export GPG key for repository")), - bold(repo), - err, - ), - level = "error" - ) - return 1 - - entropy_srv.output("%s: %s [%s]" % ( - darkgreen(_("Exported GPG key for repository")), - bold(repo), - brown(store_path), - ), - level = "info" - ) - - return 0 - -def _create_keys(entropy_srv, repo): - - entropy_srv.output("%s: %s" % ( - blue(_("Creating keys for repository")), purple(repo),)) - - repo_sec = get_gpg(entropy_srv) - if repo_sec.is_keypair_available(repo): - entropy_srv.output("%s: %s" % ( - blue(_("Another key already exists for repository")), - purple(repo), - ), - level = "warning" - ) - answer = entropy_srv.ask_question(_("Would you like to continue?")) - if answer == _("No"): - return 1 - - def mycb(sstr): - return sstr - - def mycb_int(sstr): - try: - int(sstr) - except ValueError: - return False - return True - - def mycb_ok(sstr): - return True - - input_data = [ - ('name_email', purple(_("Insert e-mail")), mycb, False), - ('expiration', purple(_("Insert expiration days (0=no expiration)")), - mycb_int, False), - ('pass', purple(_("Insert passphrase (empty=no passphrase)")), - mycb_ok, False), - ] - data = entropy_srv.input_box( - blue("%s") % (_("Repository GPG keypair creation"),), - input_data, cancel_button = True) - - if not data: - return 1 - elif not isinstance(data, dict): - return 1 - - if not data['pass']: - data['pass'] = None - else: - data['pass'] = const_convert_to_rawstring(data['pass']) - key_fp = repo_sec.create_keypair(repo, passphrase = data['pass'], - name_email = data['name_email'], - expiration_days = int(data['expiration'])) - entropy_srv.output("%s: %s" % ( - darkgreen(_("Produced GPG key with fingerprint")), - bold(key_fp), - ), - level = "info" - ) - entropy_srv.output("%s: %s" % ( - darkgreen(_("Now you should sign all the packages in it")), - blue(repo), - ), - level = "warning" - ) - entropy_srv.output( - darkgreen(_("Make friggin' sure to generate a revoke key and store it in a very safe place.")), - level = "warning" - ) - entropy_srv.output( - "# gpg --homedir '%s' --armor --output revoke.asc --gen-revoke '%s'" % ( - Repository.GPG_HOME, key_fp), - level = "info" - ) - entropy_srv.output("%s" % ( - darkgreen(_("You may also want to send your keys to a key server")), - ), - level = "info" - ) - - # remove signatures from repository database - dbconn = entropy_srv.open_server_repository(repo, read_only = False) - dbconn.dropGpgSignatures() - - return 0 - -def _delete_keys(entropy_srv, repo): - entropy_srv.output("%s: %s" % ( - blue(_("Deleting keys for repository")), purple(repo),)) - - repo_sec = get_gpg(entropy_srv) - if not repo_sec.is_keypair_available(repo): - entropy_srv.output("%s: %s" % ( - blue(_("No keys available for given repository")), - purple(repo), - ), - level = "warning" - ) - return 0 - - answer = entropy_srv.ask_question(_("Are you really sure?")) - if answer == _("No"): - return 1 - - try: - key_meta = repo_sec.get_key_metadata(repo) - except KeyError: - entropy_srv.output("%s: %s" % ( - darkgreen(_("Keys metadata not available for")), - bold(repo), - ), - level = "error" - ) - return 1 - - # remove signatures from repository database - dbconn = entropy_srv.open_server_repository(repo, read_only = False) - dbconn.dropGpgSignatures() - - repo_sec.delete_keypair(repo) - entropy_srv.output("%s: %s" % ( - darkgreen(_("Deleted GPG key with fingerprint")), - bold(key_meta['fingerprint']), - ), - level = "info" - ) - return 0 - -def _show_status(entropy_srv, repo): - repo_sec = get_gpg(entropy_srv) - - try: - key_meta = repo_sec.get_key_metadata(repo) - except KeyError: - entropy_srv.output("%s: %s" % ( - darkgreen(_("Keys metadata not available for")), - bold(repo), - ), - level = "error" - ) - return 1 - - entropy_srv.output("%s: %s" % ( - brown(_("GPG information for repository")), - bold(repo), - ), - level = "info" - ) - - def just_print(mystr): - return purple(mystr) - - def print_list(myl): - return purple(' '.join(myl)) - - def print_date(mydate): - if not mydate: - return _("N/A") - try: - return convert_unix_time_to_human_time(int(mydate)) - except (ValueError, TypeError,): - return _("N/A") - - out_data = [ - ('uids', _("Description"), print_list), - ('keyid', _("Public key identifier"), just_print), - ('fingerprint', _("Public key fingerprint"), just_print), - ('length', _("Key size"), just_print), - ('date', _("Creation date"), print_date), - ('expires', _("Expires on"), print_date), - ] - for key_id, key_desc, out_func in out_data: - entropy_srv.output("%s: %s" % ( - teal(key_desc), out_func(key_meta[key_id]),)) - - return 0 - -def _sign_packages(entropy_srv, repo): - - errors, fine, failed = entropy_srv.sign_local_packages(repo, ask = True) - if errors: - return 2 - - return 0 From a41543d853f93f52bd34c22f8d6ea61b84065474 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 13:18:42 +0200 Subject: [PATCH 76/99] [server] drop scripts dir, stuff is now in build.git repo --- server/scripts/bump_vbox | 30 --------- server/scripts/check_la | 82 ------------------------- server/scripts/recompile_kernel_modules | 4 -- server/scripts/recompile_xorg_drivers | 2 - 4 files changed, 118 deletions(-) delete mode 100755 server/scripts/bump_vbox delete mode 100755 server/scripts/check_la delete mode 100755 server/scripts/recompile_kernel_modules delete mode 100755 server/scripts/recompile_xorg_drivers diff --git a/server/scripts/bump_vbox b/server/scripts/bump_vbox deleted file mode 100755 index e6e62678e..000000000 --- a/server/scripts/bump_vbox +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -kernels="2.6.31-sabayon 2.6.32-sabayon 2.6.33-sabayon 2.6.34-sabayon" -running_kernel="2.6.34-sabayon" -packages="app-emulation/virtualbox-guest-additions app-emulation/virtualbox-modules x11-drivers/xf86-video-virtualbox" - -export ETP_REPO="sabayonlinux.org" - -# build for latest kernel -KERNEL_DIR="/usr/src/linux-${running_kernel}" emerge xf86-input-virtualbox $packages virtualbox-bin -echo -5 | etc-update -reagent update - -for kernel in $kernels; do - if [ "${kernel}" = "${running_kernel}" ]; then - continue - fi - rm -rf /usr/portage/packages/* - KERNEL_DIR="/usr/src/linux-${kernel}" emerge -B ${packages} || ( echo "ouch unable to build" && exit 1 ) - built_pkgs=$(find /usr/portage/packages -name "*.tbz2" | xargs echo) - [[ -z "${built_pkgs}" ]] && echo "ouch no kernel pkgs" && exit 2 - reagent inject ${built_pkgs} || ( echo "ouch unable to inject" && exit 3 ) - echo - reagent query tags ${kernel} -qv | sort - echo -done - -echo "Now you should remove old packages:" -echo ETP_REPO=sabayonlinux.org reagent repo remove `reagent query search virtualbox -qv | grep MY_OLD_VER | xargs echo` -echo diff --git a/server/scripts/check_la b/server/scripts/check_la deleted file mode 100755 index bcf82352c..000000000 --- a/server/scripts/check_la +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/python2 -import sys - -la_patterns = sys.argv[1:] -if not la_patterns: - print sys.argv[0], "<.la files patterns>" - raise SystemExit(1) - -import os -import re -import tempfile -import shutil -from entropy.server.interfaces import Server -import entropy.tools - -la_compiled_patterns = dict((x, re.compile(x)) for x in la_patterns) -print la_compiled_patterns - -srv = Server() - -def scan_match(pkg_id, repo_id): - - dbconn = srv.open_repository(repo_id) - # get pkg path - pkg_path = srv._get_package_path(repo_id, dbconn, pkg_id) - if not os.path.isfile(pkg_path): - print "WTF, file not found =>", pkg_path - return True # if recursive, it will be pulled in, you nevvah know - - # now extract - tmp_dir = tempfile.mkdtemp() - try: - rc = entropy.tools.uncompress_tarball(pkg_path, extract_path = tmp_dir, - catch_empty = True) - if rc != 0: - print "WTF, cannot extract file", pkg_path, "at dir", tmp_dir - return False - - - la_paths = [] - for cur_dir, subdirs, files in os.walk(tmp_dir): - for file in files: - path = os.path.join(cur_dir, file) - if path.endswith(".la") and os.path.isfile(path) and os.access(path, os.R_OK): - la_paths.append(path) - - if not la_paths: - return False - - # print "pkg:", dbconn.retrieveAtom(pkg_id), "la:", la_paths - found = False - for la_path in la_paths: - # apply regexps - la_f = open(la_path, "r") - la_content = la_f.read() - la_f.close() - for la_pattern, cm_pattern in la_compiled_patterns.items(): - if cm_pattern.search(la_content): - found = True - break - if found: - key_slot = dbconn.retrieveKeySlotAggregated(pkg_id) - f_pkg_id, f_repo_id = srv.atom_match(key_slot) - if repo_id != f_repo_id: - found = scan_match(f_pkg_id, f_repo_id) - if found: - print dbconn.retrieveKeySlotAggregated(pkg_id) - break - finally: - shutil.rmtree(tmp_dir, True) - - return found - - -repo_id = os.getenv("ETP_REPO", "sabayonlinux.org") -dbconn = srv.open_repository(repo_id) -pkg_ids = dbconn.listAllIdpackages(order_by="atom") -for pkg_id in pkg_ids: - scan_match(pkg_id, repo_id) - -srv.shutdown() -raise SystemExit(0) diff --git a/server/scripts/recompile_kernel_modules b/server/scripts/recompile_kernel_modules deleted file mode 100755 index 95421b542..000000000 --- a/server/scripts/recompile_kernel_modules +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -KERNEL_PACKAGE="sys-kernel/" -[[ -z "${1}" ]] && echo "usage: $(basename ${0}) " && exit 1 -reagent query tags "${1}" -q | grep -v ${KERNEL_PACKAGE} | cut -d# -f 1 | sed 's/^/~/g' | xargs emerge diff --git a/server/scripts/recompile_xorg_drivers b/server/scripts/recompile_xorg_drivers deleted file mode 100755 index 234f6a6c3..000000000 --- a/server/scripts/recompile_xorg_drivers +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -reagent query search x11-drivers/xf86-input x11-drivers/xf86-video -q | cut -d# -f 1 | sed 's/x11/=x11/' | xargs emerge From ecec229f08a3c2be611cd2b965bb093282f732d4 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 14:32:16 +0200 Subject: [PATCH 77/99] [eit.commands.files] new command "eit files" --- server/eit/commands/files.py | 95 ++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 server/eit/commands/files.py diff --git a/server/eit/commands/files.py b/server/eit/commands/files.py new file mode 100644 index 000000000..9979a66a5 --- /dev/null +++ b/server/eit/commands/files.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import purple, darkgreen, blue, brown, teal + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitFiles(EitCommand): + """ + Main Eit files command. + """ + + NAME = "files" + ALIASES = ["f"] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._quiet = False + self._packages = [] + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitFiles.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitFiles.NAME)) + + parser.add_argument("packages", nargs='+', + metavar="", + help=_("package names")) + parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._quiet = nsargs.quiet + self._packages += nsargs.packages + return self._call_unlocked, [self._files, None] + + def _files(self, entropy_server): + """ + Actual Eit files code. + """ + exit_st = 0 + for package in self._packages: + pkg_id, pkg_repo = entropy_server.atom_match(package) + if pkg_id == -1: + exit_st = 1 + if not self._quiet: + entropy_server.output( + "%s: %s" % ( + purple(_("Not matched")), teal(package)), + level="warning", importance=1) + continue + + entropy_repository = entropy_server.open_repository(pkg_repo) + files = entropy_repository.retrieveContent( + pkg_id, order_by="file") + atom = entropy_repository.retrieveAtom(pkg_id) + if self._quiet: + for path in files: + entropy_server.output(path, level="generic") + else: + for path in files: + entropy_server.output(path) + + return exit_st + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitFiles, + EitFiles.NAME, + _('show files owned by packages')) + ) From 7751e9ac9a7fe7761aa23c46c2aa5d3cb8ef4b21 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 15:08:41 +0200 Subject: [PATCH 78/99] [eit.commands.files] add more output to command (show repo and matched atom) --- server/eit/commands/files.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/server/eit/commands/files.py b/server/eit/commands/files.py index 9979a66a5..7faa6d973 100644 --- a/server/eit/commands/files.py +++ b/server/eit/commands/files.py @@ -13,7 +13,7 @@ import sys import argparse from entropy.i18n import _ -from entropy.output import purple, darkgreen, blue, brown, teal +from entropy.output import bold, purple, darkgreen, blue, brown, teal from eit.commands.descriptor import EitCommandDescriptor from eit.commands.command import EitCommand @@ -83,6 +83,12 @@ class EitFiles(EitCommand): else: for path in files: entropy_server.output(path) + entropy_server.output( + "[%s] %s: %s %s" % ( + purple(pkg_repo), + darkgreen(atom), + bold(str(len(files))), + teal(_("files found")))) return exit_st From 69b9831aff745df9e0ebf572a1147385d63500dc Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 17:43:05 +0200 Subject: [PATCH 79/99] [eit.commands] catch empty module exception (raises ValueError) --- server/eit/commands/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/eit/commands/__init__.py b/server/eit/commands/__init__.py index 33fde2420..7dd9bdfa1 100644 --- a/server/eit/commands/__init__.py +++ b/server/eit/commands/__init__.py @@ -24,4 +24,8 @@ for py_file in os.listdir(_cur_dir): _mod = "eit.commands." + py_file[:-3] if _mod in _excluded_mods: continue - __import__(_mod) + try: + __import__(_mod) + except ValueError: + # garbage + continue From d25c64d88f99ed3304c57d44ab36ccfe81a1e1f3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 17:43:28 +0200 Subject: [PATCH 80/99] [eit.commands.query] new command "eit query" --- server/eit/commands/query.py | 357 +++++++++++++++++++++++++++++++++++ 1 file changed, 357 insertions(+) create mode 100644 server/eit/commands/query.py diff --git a/server/eit/commands/query.py b/server/eit/commands/query.py new file mode 100644 index 000000000..99880aa81 --- /dev/null +++ b/server/eit/commands/query.py @@ -0,0 +1,357 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.output import blue, purple, darkgreen, bold, brown, teal, \ + darkred +from entropy.const import const_convert_to_rawstring, etpConst +from entropy.i18n import _ +from entropy.security import Repository +from entropy.tools import convert_unix_time_to_human_time + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitQuery(EitCommand): + """ + Main Eit query command. + """ + + NAME = "query" + ALIASES = ["q"] + ALLOW_UNPRIVILEGED = True + + def __init__(self, args): + EitCommand.__init__(self, args) + self._nsargs = None + self._quiet = False + self._verbose = False + self._repository_id = None + from text_query import print_package_info + self._pprint = print_package_info + + def parse(self): + """ Overridden from EitCommand """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitQuery.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitQuery.NAME)) + + subparsers = parser.add_subparsers( + title="action", description=_("execute query"), + help=_("available queries")) + + tags_parser = subparsers.add_parser("tags", + help=_("search package tags")) + tags_parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + tags_parser.add_argument("--in", metavar="", + help=_("query into given repository only"), + dest="inrepo", default=None) + tags_parser.add_argument("tags", nargs='+', + metavar="", + help=_("tag name")) + tags_parser.set_defaults(func=self._tags) + + needed_parser = subparsers.add_parser("needed", + help=_("show libraries (.so) required by matched packages")) + needed_parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + needed_parser.add_argument("inrepo", action="store_const", + const=None) + needed_parser.add_argument("packages", nargs='+', + metavar="", + help=_("package names")) + needed_parser.set_defaults(func=self._needed) + + revdeps_parser = subparsers.add_parser("revdeps", + help=_("show reverse dependencies of packages")) + revdeps_parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + revdeps_parser.add_argument("--verbose", "-v", action="store_true", + default=self._verbose, + help=_('verbose output, show more info')) + revdeps_parser.add_argument("--bdeps", "-b", action="store_true", + default=False, + help=_('include build dependencies')) + revdeps_parser.add_argument("inrepo", action="store_const", + const=None) + revdeps_parser.add_argument("packages", nargs='+', + metavar="", + help=_("package names")) + revdeps_parser.set_defaults(func=self._revdeps) + + sets_parser = subparsers.add_parser("sets", + help=_("search through package sets")) + sets_parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + sets_parser.add_argument("--verbose", "-v", action="store_true", + default=self._verbose, + help=_('verbose output, show package sets content')) + sets_parser.add_argument("--in", metavar="", + help=_("query into given repository only"), + dest="inrepo", default=None) + sets_parser.add_argument("sets", nargs='*', + metavar="", + help=_("package set name")) + sets_parser.set_defaults(func=self._sets) + + desc_parser = subparsers.add_parser("desc", + help=_("search packages through their description")) + desc_parser.add_argument("--quiet", "-q", action="store_true", + default=self._quiet, + help=_('quiet output, for scripting purposes')) + desc_parser.add_argument("--verbose", "-v", action="store_true", + default=self._verbose, + help=_('verbose output, show more information')) + desc_parser.add_argument("--in", metavar="", + help=_("query into given repository only"), + dest="inrepo", default=None) + desc_parser.add_argument("descriptions", nargs='+', + metavar="", + help=_("package description")) + desc_parser.set_defaults(func=self._desc) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + sys.stderr.write("%s\n" % (err,)) + return parser.print_help, [] + + self._repository_id = nsargs.inrepo + self._quiet = nsargs.quiet + self._verbose = getattr(nsargs, "verbose", self._verbose) + self._nsargs = nsargs + return self._call_locked, [nsargs.func, self._repository_id] + + def _tags(self, entropy_server): + """ + Eit query tags code. + """ + repository_ids = [] + if self._repository_id is None: + repository_ids += entropy_server.repositories() + else: + repository_ids.append(self._repository_id) + + exit_st = 0 + for repository_id in repository_ids: + repo = entropy_server.open_repository(repository_id) + key_sorter = lambda x: repo.retrieveAtom(x[1]) + for tag in self._nsargs.tags: + tagged_pkgs = repo.searchTaggedPackages( + tag, atoms = True) + results = sorted(tagged_pkgs, key = key_sorter) + for atom, pkg_id in results: + if self._quiet: + entropy_server.output(atom, + level="generic") + else: + self._pprint(pkg_id, entropy_server, + repo, quiet = False) + + if (not results) and (not self._quiet): + entropy_server.output( + "%s: %s" % ( + purple(_("Nothing found for")), + teal(tag) + ), + importance=1, level="warning") + if not results: + exit_st = 1 + + return exit_st + + def _needed(self, entropy_server): + """ + Eit query needed code. + """ + repository_ids = [] + if self._repository_id is None: + repository_ids += entropy_server.repositories() + else: + repository_ids.append(self._repository_id) + + exit_st = 0 + for package in self._nsargs.packages: + pkg_id, repo_id = entropy_server.atom_match(package) + if pkg_id == -1: + if not self._quiet: + entropy_server.output( + "%s: %s" % ( + purple(_("Not matched")), teal(package)), + level="warning", importance=1) + exit_st = 1 + continue + repo = entropy_server.open_repository(repo_id) + + atom = repo.retrieveAtom(pkg_id) + neededs = repo.retrieveNeeded(pkg_id) + for needed in neededs: + if self._quiet: + entropy_server.output(needed, level="generic") + else: + entropy_server.output(needed) + + if not self._quiet: + entropy_server.output( + "[%s] %s: %s %s" % ( + purple(repo_id), + darkgreen(atom), + bold(str(len(neededs))), + teal(_("libraries found")))) + + return exit_st + + def _revdeps(self, entropy_server): + """ + Eit query revdeps code. + """ + excluded_dep_types = None + if not self._nsargs.bdeps: + excluded_dep_types = [ + etpConst['dependency_type_ids']['bdepend_id'] + ] + + exit_st = 0 + for package in self._nsargs.packages: + pkg_id, repo_id = entropy_server.atom_match(package) + if pkg_id == -1: + if not self._quiet: + entropy_server.output( + "%s: %s" % ( + purple(_("Not matched")), teal(package)), + level="warning", importance=1) + exit_st = 1 + continue + repo = entropy_server.open_repository(repo_id) + + key_sorter = lambda x: repo.retrieveAtom(x) + results = repo.retrieveReverseDependencies(pkg_id, + exclude_deptypes = excluded_dep_types) + for pkg_id in sorted(results, key = key_sorter): + self._pprint(pkg_id, entropy_server, repo, + installed_search = True, strict_output = self._quiet, + extended = self._verbose, quiet = self._quiet) + + if not self._quiet: + atom = repo.retrieveAtom(pkg_id) + entropy_server.output( + "[%s] %s: %s %s" % ( + purple(repo_id), + darkgreen(atom), + bold(str(len(results))), + teal(_("revdep(s) found")))) + + return exit_st + + def _sets(self, entropy_server): + """ + Eit query sets code. + """ + repository_ids = [] + if self._repository_id is None: + repository_ids += entropy_server.repositories() + else: + repository_ids.append(self._repository_id) + repository_ids = tuple(repository_ids) + sets = entropy_server.Sets() + + match_num = 0 + exit_st = 0 + if not self._nsargs.sets: + self._nsargs.sets.append("*") + for item in self._nsargs.sets: + results = sets.search(item, match_repo=repository_ids) + key_sorter = lambda x: x[1] + for repo, set_name, set_data in sorted(results, + key=key_sorter): + match_num += 1 + found = True + if not self._quiet: + entropy_server.output( + "%s%s" % (brown(etpConst['packagesetprefix']), + darkgreen(set_name),)) + if self._verbose: + elements = sorted(set_data) + for element in elements: + entropy_server.output( + teal(element), + header=" ") + else: + entropy_server.output( + "%s%s" % (etpConst['packagesetprefix'], + set_name,), level="generic") + if self._verbose: + for element in sorted(set_data): + entropy_server.output( + element, level="generic") + + if not self._quiet: + entropy_server.output( + "[%s] %s %s" % ( + darkgreen(item), + bold(str(match_num)), + teal(_("sets found")))) + + return 0 + + def _desc(self, entropy_server): + """ + Eit query desc code. + """ + repository_ids = [] + if self._repository_id is None: + repository_ids += entropy_server.repositories() + else: + repository_ids.append(self._repository_id) + + for repository_id in repository_ids: + repo = entropy_server.open_repository(repository_id) + key_sorter = lambda x: repo.retrieveAtom(x) + for desc in self._nsargs.descriptions: + pkg_ids = repo.searchDescription(desc, just_id = True) + for pkg_id in sorted(pkg_ids, key = key_sorter): + if self._quiet: + entropy_server.output( + repo.retrieveAtom(pkg_id), level="generic") + else: + self._pprint(pkg_id, entropy_server, repo, + extended = self._verbose, + strict_output = False, + quiet = False) + + if not self._quiet: + entropy_server.output( + "[%s] %s %s" % ( + darkgreen(desc), + bold(str(len(pkg_ids))), + teal(_("packages found")))) + + return 0 + + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitQuery, + EitQuery.NAME, + _('miscellaneous package metadata queries')) + ) From cb9fa8542168372242fa451c183d2fc9517c4517 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 17:44:23 +0200 Subject: [PATCH 81/99] [server] server_query module is dying --- server/server_query.py | 180 ----------------------------------------- 1 file changed, 180 deletions(-) delete mode 100644 server/server_query.py diff --git a/server/server_query.py b/server/server_query.py deleted file mode 100644 index 5d4c5212d..000000000 --- a/server/server_query.py +++ /dev/null @@ -1,180 +0,0 @@ -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server}. - -""" - -from entropy.output import red, bold, darkred, blue, darkgreen, print_info, \ - print_generic, print_warning -from entropy.const import etpConst, etpUi -import text_query -from entropy.server.interfaces import Server -from entropy.i18n import _ - -def query(myopts): - - if not myopts: - return 10 - cmd = myopts[0] - myopts = myopts[1:] - if not myopts and cmd not in ["list", "sets"]: - return -10 - - rc = -10 - entropy_server = None - - try: - entropy_server = Server() - if cmd == "search": - - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - count = 0 - for mykeyword in myopts: - results = repo_db.searchPackages(mykeyword, order_by = "atom") - for result in results: - count += 1 - text_query.print_package_info( - result[1], - entropy_server, - repo_db, - installed_search = True, - extended = True, - quiet = etpUi['quiet'] - ) - - if (not count) and (not etpUi['quiet']): - print_warning(red(" * ")+red("%s." % (_("Nothing found"),) )) - rc = 0 - - elif cmd == "match": - - # open read only - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - count = 0 - for mykeyword in myopts: - pkg_id, pkg_rc = repo_db.atomMatch(mykeyword) - if pkg_id == -1: - continue - count += 1 - text_query.print_package_info( - pkg_id, - entropy_server, - repo_db, - installed_search = True, - extended = True, - quiet = etpUi['quiet'] - ) - - if (not count) and (not etpUi['quiet']): - print_warning(red(" * ")+red("%s." % (_("Nothing found"),) )) - rc = 0 - - elif cmd == "tags": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if search_tagged_packages(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "sets": - rc = text_query.search_package_sets(myopts, entropy_server) - elif cmd == "files": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if text_query.search_files(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "belongs": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if text_query.search_belongs(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "description": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if text_query.search_descriptions(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "needed": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if text_query.search_needed_libraries(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "revdeps": - rc = 0 - for dependency in myopts: - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - pkg_id, pkg_rc = repo_db.atomMatch(dependency) - if pkg_id != -1: - if text_query.search_reverse_dependencies([dependency], - entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "list": - rc = 0 - for repository_id in entropy_server.repositories(): - if myopts and (repository_id not in myopts): - continue - repo_db = entropy_server.open_repository(repository_id) - if text_query.list_packages(entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "changelog": - rc = 0 - for repository_id in entropy_server.repositories(): - repo_db = entropy_server.open_repository(repository_id) - if text_query.search_changelog(myopts, entropy_server, repo_db) != 0: - rc = 1 - elif cmd == "graph": - complete_graph = False - if "--complete" in myopts: - complete_grah = True - myopts = [x for x in myopts if x != "--complete"] - rc = text_query.graph_packages(myopts, entropy_server, - complete = complete_graph, - repository_ids = entropy_server.repositories()) - elif cmd == "revgraph": - complete_graph = False - if "--complete" in myopts: - complete_grah = True - myopts = [x for x in myopts if x != "--complete"] - rc = text_query.revgraph_packages(myopts, entropy_server, - complete = complete_graph, - repository_ids = entropy_server.repositories()) - finally: - if entropy_server is not None: - entropy_server.shutdown() - - return rc - - -def search_tagged_packages(tags, entropy, dbconn): - - if not etpUi['quiet']: - print_info(darkred(" @@ ")+darkgreen("%s..." % (_("Tag Search"),) )) - print_info(blue(" # ")+bold(entropy.repository())) - - key_sorter = lambda x: dbconn.retrieveAtom(x[1]) - for tag in tags: - results = sorted(dbconn.searchTaggedPackages(tag, atoms = True), - key = key_sorter) - for result in results: - if etpUi['quiet']: - print_generic(dbconn.retrieveAtom(result[1])) - else: - text_query.print_package_info(result[1], entropy, dbconn, - quiet = False) - if not etpUi['quiet']: - print_info(blue(" %s: " % (_("Keyword"),) )+bold("\t"+tag)) - print_info(blue(" %s: " % (_("Found"),) ) + \ - bold("\t"+str(len(results)))+red(" %s" % (_("entries"),) )) - - return 0 From f6e82db4255ba33b7a880c27314ceb68a521baa2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 18:01:26 +0200 Subject: [PATCH 82/99] [eit.commands.query] do not lock entropy resources when running --- server/eit/commands/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/eit/commands/query.py b/server/eit/commands/query.py index 99880aa81..fcb17cf60 100644 --- a/server/eit/commands/query.py +++ b/server/eit/commands/query.py @@ -140,7 +140,7 @@ class EitQuery(EitCommand): self._quiet = nsargs.quiet self._verbose = getattr(nsargs, "verbose", self._verbose) self._nsargs = nsargs - return self._call_locked, [nsargs.func, self._repository_id] + return self._call_unlocked, [nsargs.func, self._repository_id] def _tags(self, entropy_server): """ From 810812a5617ec6fbd4fee802fe509dc1ae4c8868 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 18:01:55 +0200 Subject: [PATCH 83/99] [eit.commands.merge] new command "eit merge" --- server/eit/commands/merge.py | 75 ++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 server/eit/commands/merge.py diff --git a/server/eit/commands/merge.py b/server/eit/commands/merge.py new file mode 100644 index 000000000..bfd11534a --- /dev/null +++ b/server/eit/commands/merge.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import sys +import os +import argparse + +from entropy.i18n import _ + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitMerge(EitCommand): + """ + Main Eit merge command. + """ + + NAME = "merge" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._merge_branch = None + self._ask = True + + def parse(self): + """ Overridden from EitCommit """ + descriptor = EitCommandDescriptor.obtain_descriptor( + EitMerge.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitMerge.NAME)) + + parser.add_argument("branch", metavar="", + help=_("repository branch")) + parser.add_argument("--in", metavar="", + help=_("work inside given repository"), + default=None, dest="into") + parser.add_argument("--quick", action="store_true", + default=not self._ask, + help=_("no stupid questions")) + + try: + nsargs = parser.parse_args(self._args) + except IOError as err: + return parser.print_help, [] + + self._ask = not nsargs.quick + self._merge_branch = nsargs.branch + return self._call_locked, [self._branch, nsargs.into] + + def _branch(self, entropy_server): + """ + Eit branch code. + """ + return entropy_server.flushback_packages( + entropy_server.repository(), + [self._merge_branch], ask = self._ask) + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitMerge, + EitMerge.NAME, + _('merge branch into current')) + ) From 9a28139758c959c198e5b55627da549747457f99 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 18:25:14 +0200 Subject: [PATCH 84/99] [eit.commands.test] add command "eit test pkglibs" --- server/eit/commands/test.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/server/eit/commands/test.py b/server/eit/commands/test.py index 4ed651ae2..9b2fb556d 100644 --- a/server/eit/commands/test.py +++ b/server/eit/commands/test.py @@ -63,6 +63,13 @@ class EitTest(EitCommand): help=_("excluded soname")) links_parser.set_defaults(func=self._linktest) + pkglibs_parser = subparsers.add_parser("pkglibs", + help=_("library linking test (using live system)")) + pkglibs_parser.add_argument("packages", nargs='+', default=None, + metavar="", + help=_("package names")) + pkglibs_parser.set_defaults(func=self._pkglibs) + pkgs_parser = subparsers.add_parser("pkgs", help=_("verify local packages integrity")) pkgs_parser.add_argument("repo", nargs='?', default=None, @@ -107,6 +114,22 @@ class EitTest(EitCommand): rc = 1 return rc + def _pkglibs(self, entropy_server): + pkg_matches = [] + for package in self._nsargs.packages: + pkg_id, pkg_repo = entropy_server.atom_match(package) + if pkg_id == -1: + entropy_server.output( + "%s: %s" % ( + purple(_("Not matched")), teal(package)), + level="error", importance=1) + return 1 + pkg_matches.append((pkg_id, pkg_repo)) + + entropy_server.missing_runtime_dependencies_test( + pkg_matches, bump_packages = True) + return 0 + def _pkgtest(self, entropy_server): repository_id = self._nsargs.repo if repository_id is None: From a4039ef52f022b1dcdeaa96e2180e78e61bd1071 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 16 Oct 2011 23:01:51 +0200 Subject: [PATCH 85/99] [eit.commands.branch] new command "eit branch" --- server/eit/commands/branch.py | 168 ++++++++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 server/eit/commands/branch.py diff --git a/server/eit/commands/branch.py b/server/eit/commands/branch.py new file mode 100644 index 000000000..92cb54160 --- /dev/null +++ b/server/eit/commands/branch.py @@ -0,0 +1,168 @@ +# -*- coding: utf-8 -*- +""" + + @author: Fabio Erculiani + @contact: lxnay@sabayon.org + @copyright: Fabio Erculiani + @license: GPL-2 + + B{Entropy Infrastructure Toolkit}. + +""" +import os +import sys +import argparse + +from entropy.i18n import _ +from entropy.output import bold, purple, darkgreen, blue, brown, teal + +import entropy.tools + +from eit.commands.descriptor import EitCommandDescriptor +from eit.commands.command import EitCommand + + +class EitBranch(EitCommand): + """ + Main Eit files command. + """ + + NAME = "branch" + ALIASES = [] + + def __init__(self, args): + EitCommand.__init__(self, args) + self._packages = [] + self._from_branch = None + self._to_branch = None + self._repository_id = None + self._ask = True + + def parse(self): + descriptor = EitCommandDescriptor.obtain_descriptor( + EitBranch.NAME) + parser = argparse.ArgumentParser( + description=descriptor.get_description(), + formatter_class=argparse.RawDescriptionHelpFormatter, + prog="%s %s" % (sys.argv[0], EitBranch.NAME)) + + parser.add_argument("--quick", action="store_true", + default=not self._ask, + help=_("no stupid questions")) + parser.add_argument("branch", nargs='?', + metavar="", + help=_("switch to given branch")) + parser.add_argument("repo", nargs='?', + metavar="", + help=_("repository")) + parser.add_argument("--from", metavar="", + help=_("from branch"), + dest="frombranch", default=None) + + try: + nsargs = parser.parse_args(self._args) + except IOError: + return parser.print_help, [] + + self._from_branch = nsargs.frombranch + self._to_branch = nsargs.branch + self._repository_id = nsargs.repo + self._ask = not nsargs.quick + return self._call_locked, [self._branch, self._repository_id] + + def _branch(self, entropy_server): + """ + Eit branch code. + """ + if self._to_branch is None: + # show status then + return self._status(entropy_server) + + repository_id = entropy_server.repository() + from_branch = self._from_branch + if from_branch is None: + from_branch = self._settings()['repositories']['branch'] + else: + if not entropy.tools.validate_branch_name(from_branch): + entropy_server.output( + "%s: %s" % ( + purple(_("Invalid branch")), + from_branch), + importance=1, level="error") + return 1 + + # validate to_branch + if not entropy.tools.validate_branch_name(self._to_branch): + entropy_server.output( + "%s: %s" % ( + purple(_("Invalid branch")), + self._to_branch), + importance=1, level="error") + return 1 + + dbconn_old = entropy_server.open_server_repository(repository_id, + read_only = True, no_upload = True, use_branch = from_branch, + do_treeupdates = False) + pkglist = dbconn_old.listAllPackageIds() + + if not pkglist: + entropy_server.output( + purple(_("No packages found")), + importance=1, level="error") + return 1 + + entropy_server.output( + "%s %s %s: %s" % ( + len(pkglist), + darkgreen(_("packages")), + blue(_("would be copied to branch")), + bold(self._to_branch), + ), + header=darkgreen(" @@ ")) + + if self._ask: + resp = entropy_server.ask_question( + _("Would you like to continue ?")) + if resp == _("No"): + return 1 + + # set branch to new branch first + entropy_server.set_branch(self._to_branch) + status = entropy_server._switch_packages_branch( + repository_id, from_branch, self._to_branch) + if status is None: + entropy_server.set_branch(from_branch) + return 1 + + switched, already_switched, ignored, \ + not_found, no_checksum = status + if not_found or no_checksum: + return 1 + return 0 + + def _status(self, entropy_server): + """ + Show branch information (list of branches, current branch) + """ + repository_id = entropy_server.repository() + branch_dir = entropy_server._get_local_repository_dir( + repository_id, branch="") + branches = [] + if os.path.isdir(branch_dir): + branches += [x for x in os.listdir(branch_dir) if \ + os.path.isdir(os.path.join(branch_dir, x))] + current_branch = self._settings()['repositories']['branch'] + branches.sort() + for branch in branches: + cur_txt = "" + if branch == current_branch: + cur_txt = purple("*") + " " + entropy_server.output("%s%s" % (cur_txt, branch)) + return 0 + +EitCommandDescriptor.register( + EitCommandDescriptor( + EitBranch, + EitBranch.NAME, + _('manage repository branches')) + ) From 5ed044c863df5bbe507416e2c8637ceaed50ad07 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 09:43:09 +0200 Subject: [PATCH 86/99] [eit.commands.branch] make branch switching more atomic --- server/eit/commands/branch.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/server/eit/commands/branch.py b/server/eit/commands/branch.py index 92cb54160..d40e5b3a8 100644 --- a/server/eit/commands/branch.py +++ b/server/eit/commands/branch.py @@ -128,11 +128,15 @@ class EitBranch(EitCommand): # set branch to new branch first entropy_server.set_branch(self._to_branch) - status = entropy_server._switch_packages_branch( - repository_id, from_branch, self._to_branch) - if status is None: - entropy_server.set_branch(from_branch) - return 1 + status = None + try: + status = entropy_server._switch_packages_branch( + repository_id, from_branch, self._to_branch) + if status is None: + return 1 + finally: + if status is None: + entropy_server.set_branch(from_branch) switched, already_switched, ignored, \ not_found, no_checksum = status From 4aebd05488c19be2241c0ea8e2ab99f27ed7bf2a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 09:58:47 +0200 Subject: [PATCH 87/99] [eit.commands.list] add --injected switch --- server/eit/commands/list.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/server/eit/commands/list.py b/server/eit/commands/list.py index c39da17cb..3b1ac472c 100644 --- a/server/eit/commands/list.py +++ b/server/eit/commands/list.py @@ -36,6 +36,7 @@ class EitList(EitCommand): self._repositories = [] self._quiet = False self._verbose = False + self._injected = False def parse(self): descriptor = EitCommandDescriptor.obtain_descriptor( @@ -53,6 +54,9 @@ class EitList(EitCommand): parser.add_argument("--verbose", "-v", action="store_true", default=self._verbose, help=_('output more package info')) + parser.add_argument("--injected", action="store_true", + default=self._injected, + help=_('only list injected packages')) try: nsargs = parser.parse_args(self._args) @@ -61,6 +65,7 @@ class EitList(EitCommand): self._quiet = nsargs.quiet self._verbose = nsargs.verbose + self._injected = nsargs.injected self._repositories += nsargs.repo return self._call_unlocked, [self._list, None] @@ -86,6 +91,9 @@ class EitList(EitCommand): """ entropy_repository = entropy_server.open_repository(repository_id) pkg_ids = entropy_repository.listAllPackageIds(order_by = "atom") + if self._injected: + pkg_ids = [x for x in pkg_ids if \ + entropy_repository.isInjected(x)] for pkg_id in pkg_ids: atom = entropy_repository.retrieveAtom(pkg_id) @@ -98,7 +106,7 @@ class EitList(EitCommand): sizeinfo = "" if self._verbose: branch = entropy_repository.retrieveBranch(pkg_id) - branchinfo = darkgreen(" [")+teal(branch)+darkgreen("] ") + branchinfo = darkgreen("[")+teal(branch)+darkgreen("]") mysize = entropy_repository.retrieveOnDiskSize(pkg_id) mysize = entropy.tools.bytes_into_human(mysize) sizeinfo = brown("[")+purple(mysize)+brown("]") @@ -106,7 +114,7 @@ class EitList(EitCommand): if not self._quiet: entropy_server.output( "%s %s %s" % ( - sizeinfo, branchinfo, atom), + atom, sizeinfo, branchinfo), header="") else: entropy_server.output(atom, level="generic") From b594a4385c51e2ee44c7044668030bcbf4a21f32 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 10:19:46 +0200 Subject: [PATCH 88/99] [eit.commands.test] new command "eit test remote" --- server/eit/commands/test.py | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/server/eit/commands/test.py b/server/eit/commands/test.py index 9b2fb556d..e133690e2 100644 --- a/server/eit/commands/test.py +++ b/server/eit/commands/test.py @@ -32,6 +32,7 @@ class EitTest(EitCommand): def __init__(self, args): EitCommand.__init__(self, args) self._nsargs = None + self._ask = False def parse(self): """ Overridden from EitCommand """ @@ -70,15 +71,24 @@ class EitTest(EitCommand): help=_("package names")) pkglibs_parser.set_defaults(func=self._pkglibs) - pkgs_parser = subparsers.add_parser("pkgs", + pkgs_parser = subparsers.add_parser("local", help=_("verify local packages integrity")) pkgs_parser.add_argument("repo", nargs='?', default=None, metavar="", help=_("repository")) pkgs_parser.add_argument("--quick", action="store_true", - default=False, - help=_("no stupid questions")) + default=not self._ask, + help=_("no stupid questions")) pkgs_parser.set_defaults(func=self._pkgtest) + rempkgs_parser = subparsers.add_parser("remote", + help=_("verify remote packages integrity")) + rempkgs_parser.add_argument("repo", nargs='?', default=None, + metavar="", help=_("repository")) + rempkgs_parser.add_argument("--quick", action="store_true", + default=not self._ask, + help=_("no stupid questions")) + rempkgs_parser.set_defaults(func=self._rem_pkgtest) + try: nsargs = parser.parse_args(self._args) except IOError as err: @@ -149,6 +159,13 @@ class EitTest(EitCommand): return 1 return 0 + def _rem_pkgtest(self, entropy_server): + repository_id = self._nsargs.repo + if repository_id is None: + repository_id = entropy_server.repository() + entropy_server._verify_remote_packages(repository_id, [], + ask = self._ask) + return 0 EitCommandDescriptor.register( EitCommandDescriptor( From 4ca86eb750398bc09c65aceeca543d3efebc2fd9 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 10:40:44 +0200 Subject: [PATCH 89/99] [eit.commands.cp] if empty packages list is passed, consider all the packages --- server/eit/commands/cp.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/server/eit/commands/cp.py b/server/eit/commands/cp.py index 453e335b4..e7f1995ad 100644 --- a/server/eit/commands/cp.py +++ b/server/eit/commands/cp.py @@ -98,16 +98,20 @@ class EitCp(EitCommand): match_repo = [self._source], multi_match = True) if not p_matches: entropy_server.output( - red("%s: " % (_("Cannot match"),) ) + bold(package) + \ - red(" %s " % (_("in"),) ) + bold(self._source) + \ - red(" %s" % (_("repository"),)), - header=brown(" * "), - level="warning", - importance=1) + "%s: %s" % ( + purple(_("Not matched")), teal(package)), + level="warning", importance=1) else: package_ids += [pkg_id for pkg_id, r_id in p_matches if \ (pkg_id not in package_ids)] + if (not self._packages) and (not package_ids): + entropy_server.output( + purple(_("Considering all the packages")), + importance=1, level="warning") + repo = entropy_server.open_repository(self._source) + package_ids = repo.listAllPackageIds() + if not package_ids: return 1 From 07b15b5d1f391674135b1305b806ede94e53a090 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 10:41:35 +0200 Subject: [PATCH 90/99] [eit.commands.mv] add support for complete repo packages migration --- server/eit/commands/mv.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/server/eit/commands/mv.py b/server/eit/commands/mv.py index 6899d1f15..66820ff2b 100644 --- a/server/eit/commands/mv.py +++ b/server/eit/commands/mv.py @@ -36,27 +36,26 @@ class EitMv(EitCp): formatter_class=argparse.RawDescriptionHelpFormatter, prog="%s %s" % (sys.argv[0], EitMv.NAME)) - parser.add_argument("source", nargs=1, - metavar="", + parser.add_argument("source", metavar="", help=_("source repository")) - parser.add_argument("dest", nargs=1, - metavar="", + parser.add_argument("dest", metavar="", help=_("destination repository")) parser.add_argument("--deps", action="store_true", default=False, help=_("include dependencies")) - parser.add_argument("package", nargs='+', metavar="", - help=_("package dependency")) + parser.add_argument("packages", nargs='*', metavar="", + help=_("package names (all if none)"), + default=None) try: nsargs = parser.parse_args(self._args) except IOError as err: return parser.print_help, [] - self._source = nsargs.source[0] - self._dest = nsargs.dest[0] + self._source = nsargs.source + self._dest = nsargs.dest self._deps = nsargs.deps - self._packages += nsargs.package + self._packages += nsargs.packages self._copy = False return self._call_locked, [self._move_copy, self._source] From 4583e68df15842ca81f040176e1d5e84f429578e Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:12:14 +0200 Subject: [PATCH 91/99] [entropy.server] drop etpConst['community']['mode'], move setting into server.conf --- conf/server.conf.example | 10 +++++++ libraries/entropy/const.py | 8 ------ libraries/entropy/server/interfaces/main.py | 29 +++++++++++++++------ server/eit/commands/command.py | 2 -- services/matter | 10 ++----- 5 files changed, 33 insertions(+), 26 deletions(-) diff --git a/conf/server.conf.example b/conf/server.conf.example index 42836fb8f..a176a191a 100644 --- a/conf/server.conf.example +++ b/conf/server.conf.example @@ -13,6 +13,16 @@ # # expiration-days = +# Community repository mode, enable this if your repositories +# are just "overlays" of other full-blown repositories. +# For example, you're providing your own set of customized packages +# that are meant to work with some distribution repositories' packages. +# +# syntax for community-mode: +# community-mode = +# default is: disable +# +community-mode = disable # # syntax for default-repository: diff --git a/libraries/entropy/const.py b/libraries/entropy/const.py index 1e2edbcd2..fb8aec049 100644 --- a/libraries/entropy/const.py +++ b/libraries/entropy/const.py @@ -215,11 +215,6 @@ def const_default_settings(rootdir): with open(cmdline_file, "r") as cmdline_f: cmdline = cmdline_f.readline().strip().split() - def _default_community_repo_mode(): - if os.getuid() != 0: - return False - return os.getenv("ETP_COMMUNITY_MODE", False) - etpConst.clear() my_const = { 'logging': { @@ -227,9 +222,6 @@ def const_default_settings(rootdir): 'verbose_loglevel_id': 2, }, 'server_repositories': {}, - 'community': { - 'mode': _default_community_repo_mode(), - }, 'cmdline': cmdline, 'backed_up': {}, # entropy default installation directory diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index ae5c2e370..e4d6b776c 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -598,6 +598,7 @@ class ServerSystemSettingsPlugin(SystemSettingsPlugin): data = { 'repositories': etpConst['server_repositories'].copy(), + 'community_mode': False, 'qa_langs': ["en_US", "C"], 'default_repository_id': etpConst['defaultserverrepositoryid'], 'base_repository_id': None, @@ -731,6 +732,11 @@ class ServerSystemSettingsPlugin(SystemSettingsPlugin): if bool_setting is not None: data['changelog'] = bool_setting + def _community_mode(line, setting): + bool_setting = entropy.tools.setting_to_bool(setting) + if bool_setting is not None: + data['community_mode'] = bool_setting + def _rss_feed(line, setting): bool_setting = entropy.tools.setting_to_bool(setting) if bool_setting is not None: @@ -769,6 +775,7 @@ class ServerSystemSettingsPlugin(SystemSettingsPlugin): 'officialserverrepositoryid': _offservrepoid, 'default-repository': _default_repo, 'expiration-days': _exp_days, + 'community-mode': _community_mode, 'expiration-based-scope': _exp_based_scope, 'nonfree-packages-directory-support': _nf_packages_dir_sup, 'disabled-eapis': _disabled_eapis, @@ -801,8 +808,14 @@ class ServerSystemSettingsPlugin(SystemSettingsPlugin): continue func(line, value) + env_community_mode = os.getenv("ETP_COMMUNITY_MODE") + if env_community_mode == "0": + data['community_mode'] = False + elif env_community_mode == "1": + data['community_mode'] = True + # add system database if community repository mode is enabled - if self._helper.community_repo: + if data['community_mode']: data['repositories'][etpConst['clientserverrepoid']] = {} mydata = {} mydata['description'] = "Community Repositories System Repository" @@ -1067,8 +1080,7 @@ class Server(Client): SYSTEM_SETTINGS_PLG_ID = etpConst['system_settings_plugins_ids']['server_plugin'] def init_singleton(self, default_repository = None, save_repository = False, - community_repo = False, fake_default_repo = False, - fake_default_repo_id = None, + fake_default_repo = False, fake_default_repo_id = None, fake_default_repo_desc = 'this is a fake repository'): self.__instance_destroyed = False @@ -1079,7 +1091,6 @@ class Server(Client): self._treeupdates_repos = set() self._server_dbcache = {} self._settings = SystemSettings() - self.community_repo = community_repo etpSys['serverside'] = True self.fake_default_repo = fake_default_repo self.fake_default_repo_id = fake_default_repo_id @@ -3983,7 +3994,7 @@ class Server(Client): def _setup_community_repositories_settings(self): srv_set = self._settings[Server.SYSTEM_SETTINGS_PLG_ID]['server'] - if self.community_repo: + if srv_set['community_mode']: for repoid in srv_set['repositories']: srv_set['repositories'][repoid]['community'] = True @@ -4355,8 +4366,9 @@ class Server(Client): if repository_id in self._memory_db_srv_instances: return self._memory_db_srv_instances[repository_id] + srv_set = self._settings[Server.SYSTEM_SETTINGS_PLG_ID]['server'] if repository_id == etpConst['clientserverrepoid'] and \ - self.community_repo: + srv_set['community_mode']: return self.installed_repository() if just_reading: @@ -5436,7 +5448,7 @@ class Server(Client): if setting not in self._settings_to_backup: self._settings_to_backup.append(setting) # setup client database - if not self.community_repo: + if not srv_set['community_mode']: etpConst['etpdatabaseclientfilepath'] = \ self._get_local_repository_file(repository_id) etpConst['clientdbid'] = etpConst['serverdbid'] @@ -5444,7 +5456,8 @@ class Server(Client): def _show_interface_status(self): type_txt = _("server-side repository") - if self.community_repo: + srv_set = self._settings[Server.SYSTEM_SETTINGS_PLG_ID]['server'] + if srv_set['community_mode']: type_txt = _("community repository") # ..on repository: mytxt = _("Entropy Server Interface Instance on repository") diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index 54b49d50a..b65e4e244 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -53,8 +53,6 @@ class EitCommand(object): Return the Entropy Server object. This method is not thread safe. """ - if "community_repo" not in kwargs: - kwargs["community_repo"] = etpConst['community']['mode'] return Server(*args, **kwargs) def _call_locked(self, func, repo): diff --git a/services/matter b/services/matter index 1315b43e9..a434662ee 100755 --- a/services/matter +++ b/services/matter @@ -52,12 +52,6 @@ import portage.versions import portage -def get_entropy_server(community_mode): - """ - Return Entropy Server interface object. - """ - return Server(community_repo = community_mode) - def exec_cmd(args, env = None): """ Execute a command with given environment. @@ -1464,7 +1458,7 @@ Matter Resources Lock file you can use to detect if matter is running: raise SystemExit(1) if nsargs.community: - etpConst['community']['mode'] = True + os.environ['ETP_COMMUNITY_MODE'] = "1" if nsargs.debug: print_warning(repr(nsargs)) @@ -1493,7 +1487,7 @@ Matter Resources Lock file you can use to detect if matter is running: try: try: - entropy_server = get_entropy_server(etpConst['community']['mode']) + entropy_server = Server() except PermissionDenied: # repository not available or not configured print_error("no valid server-side repositories configured") From aebdcad4dc60cbcc2092a4b4b759074ef6dd7370 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:12:43 +0200 Subject: [PATCH 92/99] [reagent] goodbye, RIP my friend --- server/reagent.py | 347 ---------- server/server_reagent.py | 1381 -------------------------------------- 2 files changed, 1728 deletions(-) delete mode 100644 server/reagent.py delete mode 100644 server/server_reagent.py diff --git a/server/reagent.py b/server/reagent.py deleted file mode 100644 index ea7857d42..000000000 --- a/server/reagent.py +++ /dev/null @@ -1,347 +0,0 @@ -#!/usr/bin/python2 -O -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server}. - -""" -import os, sys -sys.path.insert(0, '../libraries') -sys.path.insert(1, '../client') -sys.path.insert(2, '../server') -sys.path.insert(3, '/usr/lib/entropy/client') -sys.path.insert(4, '/usr/lib/entropy/libraries') -sys.path.insert(5, '/usr/lib/entropy/server') -from entropy.i18n import _ -import entropy.tools -from entropy.output import red, print_error, print_generic, \ - is_stdout_a_tty, nocolor, etpUi, darkgreen -from entropy.const import etpConst, const_kill_threads -from entropy.server.interfaces import Server -from text_tools import print_menu - -help_opts = [ - None, - (0, " ~ reagent ~ ", 1, - 'Entropy Framework Server - (C) %s' % (entropy.tools.get_year(),) ), - None, - (0, _('Basic Options'), 0, None), - None, - (1, '--help', 2, _('this output')), - (1, '--version', 1, _('print version')), - (1, '--nocolor', 1, _('disable colorized output')), - (1, '--color', 2, _('force colorized output')), - None, - (0, _('Application Options'), 0, None), - None, - (1, 'status', 3, _('show current repositories status')), - None, - (1, 'update', 3, _('scan the System looking for newly compiled packages')), - (2, '--seekstore', 2, _('analyze the Entropy Store directory directly')), - (2, '--repackage ', 1, _('repackage the specified atoms')), - (2, '--noask', 2, _('do not ask anything except critical things')), - (2, '--atoms ', 1, _('manage only the specified atoms')), - (2, '--interactive', 2, _('run in interactive mode (asking things one by one)')), - None, - (1, 'inject ', 1, _('add binary packages to repository w/o affecting scopes (multipackages)')), - None, - (1, 'query', 3, _('do some searches into repository databases')), - (2, 'search', 3, _('search packages inside the default repository database')), - (2, 'match', 3, _('match package dependency inside the default repository database')), - (2, 'needed', 3, _('show runtime libraries needed by the provided atoms')), - (2, 'revdeps', 2, _('show what packages depend on the provided atoms')), - (2, 'tags', 3, _('show packages owning the specified tags')), - (2, 'sets', 3, _('search available package sets')), - (2, 'files', 3, _('show files owned by the provided atoms')), - (2, 'belongs', 2, _('show from what package the provided files belong')), - (2, 'description', 2, _('search packages by description')), - (2, 'list', 3, _('list all the packages in the default repository')), - (2, 'graph', 3, _('show direct depdendencies tree for provided installable atoms')), - (3, '--complete', 1, _('include system packages, build deps and circularity information')), - (2, 'revgraph', 2, _('show reverse depdendencies tree for provided installed atoms')), - (3, '--complete', 1, _('include system packages, build deps and circularity information')), - (2, '--verbose', 2, _('show more details')), - (2, '--quiet', 2, _('print results in a scriptable way')), - None, - (1, 'repo', 3, _('manage a repository')), - (2, 'init', 3, _('(re)initialize the current repository')), - (2, 'bump', 4, _('manually force a revision bump for the current repository database')), - (3, '--sync', 3, _('synchronize the database')), - (2, 'flushback [branches]', 2, _('flush back old branches packages to current branch')), - (2, 'remove', 4, _('remove the provided atoms from the current repository database')), - (3, '--nodeps', 2, _('do not include reverse dependencies')), - (2, 'multiremove', 3, _('remove the provided injected atoms (all if no atom specified)')), - (2, 'create-empty-database ', 1, _('create an empty repository database in the provided path')), - (2, 'switchbranch ', 3, _('switch to the specified branch the repository')), - (2, 'md5remote [atoms]', 2, _('verify remote integrity of the provided atoms')), - (2, 'backup', 4, _('backup current repository database')), - (2, 'restore', 4, _('restore a previously backed-up repository database')), - (2, 'enable ', 3, _('enable the specified repository')), - (2, 'disable ', 3, _('disable the specified repository')), - (2, 'package-dep-check [atoms]', 0, _('check packages in repository for missing dependencies')), - (2, 'package-dep [atoms]', 1, _('handle packages dependencies')), - (2, 'package-tag [atoms]', 1, _('clone a package assigning it an arbitrary tag')), - (2, 'package-mask [atoms]', 1, _('mask given package in given repository')), - (2, 'package-unmask [atoms]', 1, _('unmask given packages in given repository')), - (2, 'move [atoms]', 1, _('move packages from a repository to another')), - (3, '--deps', 3, _('pulls dependencies in')), - (2, 'copy [atoms]', 1, _('copy packages from a repository to another')), - (3, '--deps', 3, _('pulls dependencies in')), - (2, 'default ', 2, _('set the default repository')), - None, - (1, 'key', 3, _('manage repository digital signatures (OpenGPG)')), - (2, 'create [repos]', 1, _('create keypair for repositories and sign packages')), - (2, 'delete [repos]', 1, _('delete keypair (and digital signatures) of repository')), - (2, 'status [repos]', 1, _('show currently configured keys information for given repositories')), - (2, 'sign [repos]', 1, _('sign (or re-sign) packages in repository using currently set keypair')), - (2, 'import ', 1, _('import keypair, bind to given repository')), - (2, 'export-public ', 1, _('export public key of given repository')), - (2, 'export-private ', 1, _('export private key of given repository')), - None, - (1, 'spm', 3, _('source package manager functions')), - (2, 'compile', 3, _('compilation function')), - (3, 'categories', 2, _('compile packages belonging to the provided categories')), - (4, '--list', 2, _('just list packages')), - (4, '--nooldslots', 1, _('do not pull old package slots')), - (3, 'pkgset', 3, _('compile packages in provided package set names')), - (4, '--list', 2, _('just list packages')), - (4, '--rebuild', 1, _('rebuild everything')), - (4, '--dbupdate', 1, _('run database update if all went fine')), - (4, '--dbsync', 1, _('run mirror sync if all went fine')), - (2, 'orphans', 3, _('scan orphaned packages in SPM')), - (2, 'new [categories]', 2, _('scan new packages available in SPM')), - None, - (1, 'deptest', 2, _('look for unsatisfied dependencies')), - (1, 'libtest', 2, _('look for missing libraries (scan system)')), - (2, '--dump', 2, _('dump results to files')), - (1, 'linktest [excluded libraries]', 1, _('look for missing libraries (scan repository metadata)')), - (1, 'pkgtest', 2, _('verify the integrity of local package files')), - None, - (1, 'cleanup', 2, _('remove downloaded packages and clean temp. directories)')), - None, -] - -def handle_exception(exc_class, exc_instance, exc_tb): - - # restore original exception handler, to avoid loops - uninstall_exception_handler() - entropy.tools.kill_threads() - - if exc_class is KeyboardInterrupt: - raise SystemExit(1) - - # always slap exception data (including stack content) - entropy.tools.print_exception(tb_data = exc_tb) - - raise exc_instance - -def install_exception_handler(): - sys.excepthook = handle_exception - -def uninstall_exception_handler(): - sys.excepthook = sys.__excepthook__ - -def get_entropy_server(): - return Server(community_repo = etpConst['community']['mode']) - -options = sys.argv[1:] - -# print version -if ("--version" in options) or ("-V" in options): - print_generic("reagent: "+etpConst['entropyversion']) - raise SystemExit(0) - -import re -opt_r = re.compile("^(\\-)([a-z]+)$") -for n in range(len(options)): - if opt_r.match(options[n]): - x = options[n] - del options[n] - options.extend(["-%s" % (d,) for d in x[1:]]) - -# preliminary options parsing -_options = [] -force_color = False -for opt in options: - if opt in ["--nocolor", "-N"]: - nocolor() - elif opt in ["--color", "-C"]: - force_color = True - elif opt in ["--quiet", "-q"]: - etpUi['quiet'] = True - elif opt in ["--verbose", "-v"]: - etpUi['verbose'] = True - elif opt in ["--ask", "-a"]: - etpUi['ask'] = True - elif opt in ["--pretend", "-p"]: - etpUi['pretend'] = True - else: - _options.append(opt) -options = _options - -# Check if we need to disable colors -if (not force_color) and (not is_stdout_a_tty()): - nocolor() - -# print help -if not options or ("--help" in options) or ("-h" in options): - print_menu(help_opts) - if len(options) < 1: - print_error("not enough parameters") - raise SystemExit(1) - -rc = -10 -if not entropy.tools.is_root(): - print_error("you must be root in order to run "+sys.argv[0]) - -install_exception_handler() -main_cmd = options.pop(0) - -if main_cmd == "update": - import server_reagent - rc = server_reagent.update(options) - -elif main_cmd == "inject": - import server_reagent - rc = server_reagent.inject(options) - -elif main_cmd == "query": - import server_query - rc = server_query.query(options) - -elif main_cmd == "repo": - if "switchbranch" in options: - etpUi['warn'] = False - import server_reagent - rc = server_reagent.repositories(options) - -elif main_cmd == "status": - import server_reagent - server_reagent.status() - rc = 0 - -elif main_cmd == "key": - import server_key - rc = server_key.key(options) - -elif main_cmd == "deptest": - acquired = False - server = None - rc = 1 - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - else: - server.extended_dependencies_test(server.repositories()) - rc = 0 - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -elif main_cmd == "pkgtest": - acquired = False - server = None - rc = 1 - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - else: - server._verify_local_packages(server.repository(), - [], ask = etpUi['ask']) - rc = 0 - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -elif main_cmd == "libtest": - dump = "--dump" in options - acquired = False - server = None - rc = 1 - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - else: - rc = server.test_shared_objects(server.repository(), - dump_results_to_file = dump) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -elif main_cmd == "linktest": - acquired = False - server = None - rc = 1 - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - else: - srv_set = server.Settings()[Server.SYSTEM_SETTINGS_PLG_ID]['server'] - base_repository_id = srv_set['base_repository_id'] - qa = server.QA() - for repository_id in server.repositories(): - repo = server.open_repository(repository_id) - found_something = qa.test_missing_runtime_libraries( - server, - [(x, repository_id) for x in repo.listAllPackageIds()], - base_repository_id = base_repository_id, - excluded_libraries = options) - if not found_something: - rc = 0 - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -# cleanup -elif main_cmd == "cleanup": - import text_tools - acquired = False - server = None - rc = 1 - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - else: - rc = text_tools.cleanup([etpConst['packagestmpdir'], - etpConst['logdir']]) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -elif main_cmd == "spm": - import server_reagent - rc = server_reagent.spm(options) - -if rc == -10: - print_menu(help_opts) - print_error(red(" %s." % (_("Wrong parameters"),) )) - rc = 10 - -uninstall_exception_handler() -entropy.tools.kill_threads() -raise SystemExit(rc) diff --git a/server/server_reagent.py b/server/server_reagent.py deleted file mode 100644 index f6fcd8ea3..000000000 --- a/server/server_reagent.py +++ /dev/null @@ -1,1381 +0,0 @@ -# -*- coding: utf-8 -*- -""" - - @author: Fabio Erculiani - @contact: lxnay@sabayon.org - @copyright: Fabio Erculiani - @license: GPL-2 - - B{Entropy Package Manager Server}. - -""" -import os -import subprocess -from entropy.const import etpConst, etpUi -from entropy.output import red, bold, brown, purple, darkgreen, darkred, blue, \ - green, print_info, print_warning, print_error, print_generic, teal -from text_tools import print_table -from entropy.server.interfaces import Server -from entropy.core.settings.base import SystemSettings -from entropy.i18n import _ - -import entropy.dep -import entropy.tools - -SYS_SET = SystemSettings() - -def get_entropy_server(): - """ - Return Entropy Server interface object. - """ - return Server(community_repo = etpConst['community']['mode']) - -def inject(options): - - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - - extensions = server.Spm_class().binary_packages_extensions() - - etp_pkg_files = [] - for opt in options: - opt = os.path.realpath(opt) - if not (os.path.isfile(opt) and os.access(opt, os.R_OK)): - print_error(darkred(" * ")+bold(opt)+red(" is invalid.")) - return 1 - found = False - for ext in extensions: - if opt.endswith("."+ext): - etp_pkg_files.append(opt) - found = True - break - if not found: - print_error(darkred(" * ") + \ - bold(opt) + red(" is invalid package file.")) - return 1 - - if not etp_pkg_files: - print_error(red(_("no package specified."))) - return 2 - - # in this case, no split package files are provided - repository_id = server.repository() - etp_pkg_files = [([x], True,) for x in etp_pkg_files] - idpackages = server.add_packages_to_repository( - repository_id, etp_pkg_files) - if idpackages: - # checking dependencies and print issues - server.extended_dependencies_test([repository_id]) - server.close_repositories() - - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _enable_repo(entropy_server, repoid): - print_info(brown(" @@ ")+red(_("Enabling"))+" "+bold(str(repoid)) + \ - red(" %s..." % (_("repository"),) ), back = True) - - rc = entropy_server.enable_repository(repoid) - if rc: - print_info(brown(" @@ ")+red(_("Enabled"))+" "+bold(str(repoid)) + \ - red(" %s." % (_("repository"),) )) - return 0 - elif rc == False: - print_info(brown(" @@ ")+red(_("Repository"))+" " + \ - bold(str(repoid)) + red(" %s." % (_("already enabled"),) )) - return 1 - - print_info(brown(" @@ ")+red(_("Configuration file"))+" " + \ - bold(etpConst['serverconf'])+red(" %s." % (_("not found"),) )) - return 127 - -def _disable_repo(entropy_server, repoid): - print_info(brown(" @@ ")+red(_("Disabling"))+" "+bold(str(repoid)) + \ - red(" %s..." % (_("repository"),) ), back = True) - rc = entropy_server.disable_repository(repoid) - if rc: - print_info(brown(" @@ ")+red(_("Disabled"))+" " + \ - bold(str(repoid)) + red(" %s." % (_("repository"),) )) - return 0 - elif rc == False: - print_info(brown(" @@ ")+red(_("Repository"))+" " + \ - bold(str(repoid))+red(" %s." % (_("already disabled"),) )) - return 1 - else: - print_info(brown(" @@ ")+red(_("Configuration file"))+" " + \ - bold(etpConst['serverconf'])+red(" %s." % (_("not found"),) )) - return 127 - -def _package_tag(entropy_server, args): - - if len(args) < 3: - print_error(darkred(" !!! ")+red(_("Invalid syntax."))) - return 1 - repo = args[0] - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_set = SYS_SET[sys_settings_plugin_id]['server'] - if repo not in srv_set['repositories']: - print_error(darkred(" !!! ")+red(_("No valid repository specified."))) - return 3 - - tag_string = args[1] - atoms = args[2:] - # match - idpackages = [] - for package in atoms: - match = entropy_server.atom_match(package + '#', match_repo = [repo]) - if (match[1] == repo): - idpackages.append(match[0]) - else: - print_warning( brown(" * ") + \ - red("%s: " % (_("Cannot match"),) )+bold(package) + \ - red(" %s " % (_("in"),) )+bold(repo) + \ - red(" %s" % (_("repository"),) ) - ) - if not idpackages: - return 2 - return entropy_server.tag_packages([(x, repo) for x in idpackages], - tag_string) - -def _package_dep_check(entropy_server, args): - - if len(args) < 1: - print_error(darkred(" !!! ")+red(_("Invalid syntax."))) - return 1 - repo = args[0] - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_set = SYS_SET[sys_settings_plugin_id]['server'] - if repo not in srv_set['repositories']: - print_error(darkred(" !!! ")+red(_("No valid repository specified."))) - return 3 - - atoms = args[1:] - if not atoms: - pkg_ids = entropy_server.open_repository(repo).listAllPackageIds() - pkg_matches = [(x, repo) for x in pkg_ids] - else: - pkg_matches = [] - for package in atoms: - match = entropy_server.atom_match(package, match_repo = (repo,)) - if match[1] == repo: - pkg_matches.append(match) - else: - print_warning( brown(" * ") + \ - red("%s: " % (_("Cannot match"),) )+bold(package) + \ - red(" %s " % (_("in"),) )+bold(repo) + \ - red(" %s" % (_("repository"),) ) - ) - - if not pkg_matches: - print_error(darkred(" !!! ")+red(_("No packages selected."))) - return 2 - - entropy_server.missing_runtime_dependencies_test(pkg_matches, - bump_packages = True) - return 0 - -def _package_dep(entropy_server, args): - - if len(args) < 2: - print_error(darkred(" !!! ")+red(_("Invalid syntax."))) - return 1 - repo = args[0] - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_set = SYS_SET[sys_settings_plugin_id]['server'] - if repo not in srv_set['repositories']: - print_error(darkred(" !!! ")+red(_("No valid repository specified."))) - return 3 - - atoms = args[1:] - # match - idpackages = [] - for package in atoms: - match = entropy_server.atom_match(package, match_repo = [repo]) - if match[1] == repo: - idpackages.append(match[0]) - else: - print_warning( brown(" * ") + \ - red("%s: " % (_("Cannot match"),) )+bold(package) + \ - red(" %s " % (_("in"),) )+bold(repo) + \ - red(" %s" % (_("repository"),) ) - ) - if not idpackages: - print_error(darkred(" !!! ")+red(_("No packages selected."))) - return 2 - dbconn = entropy_server.open_server_repository(repo, - just_reading = True) - - def _show_dependencies_legend(indent = ''): - for dep_id, dep_val in sorted(etpConst['dependency_type_ids'].items(), - key = lambda x: x[0], reverse = True): - - dep_desc = etpConst['dependency_type_ids_desc'].get(dep_id, _("N/A")) - txt = '%s%s%s%s %s' % (indent, teal("{"), dep_val+1, teal("}"), - dep_desc,) - print_info(txt) - - def _print_pkg_deps(atom, orig_deps, partial = False): - if not partial: - print_info(brown(" @@ ")+"%s: %s:" % (blue(atom), - darkgreen(_("package dependencies")),)) - else: - print_generic("") - - for dep_str, dep_id in orig_deps: - print_info("%s [%s: %s] %s" % ( - brown(" #"), brown(_("type")), - darkgreen(str(dep_id+1)), purple(dep_str),)) - if not orig_deps: - print_info("%s %s" % (brown(" # "), _("No dependencies"),)) - else: - _show_dependencies_legend(" ") - - if partial: - print_generic("") - - avail_dep_type_desc = [] - d_type_ids = etpConst['dependency_type_ids'] - d_type_desc = etpConst['dependency_type_ids_desc'] - for dep_val, dep_id in sorted(d_type_ids.items(), key = lambda x: x[1]): - avail_dep_type_desc.append(d_type_desc[dep_val]) - - def pkg_dep_types_cb(s): - try: - avail_dep_type_desc.index(s[1]) - except IndexError: - return False - return True - - for idpackage in idpackages: - - atom = dbconn.retrieveAtom(idpackage) - orig_deps = dbconn.retrieveDependencies(idpackage, extended = True, - resolve_conditional_deps = False) - dep_type_map = dict(orig_deps) - - def dep_check_cb(s): - - input_params = [ - ('dep_type', ('combo', (_("Dependency type"), - avail_dep_type_desc),), - pkg_dep_types_cb, False) - ] - data = entropy_server.input_box( - ("%s: %s" % (_('Select a dependency type for'), s,)), - input_params - ) - if data is None: - return False - - rc_dep_type = avail_dep_type_desc.index(data['dep_type'][1]) - dep_type_map[s] = rc_dep_type - changes_made_type_map = {s: rc_dep_type} - - _print_pkg_deps(atom, changes_made_type_map.items(), - partial = True) - - return True - - _print_pkg_deps(atom, orig_deps) - - print_generic("") - current_deps = [x[0] for x in orig_deps] - - input_params = [ - ('new_deps', ('list', (_('Dependencies'), current_deps),), - dep_check_cb, True) - ] - data = entropy_server.input_box(_("Dependencies editor"), input_params) - if data is None: - continue - - new_deps = data.get('new_deps', []) - orig_deps = [(x, dep_type_map[x],) for x in new_deps] - insert_deps = dict(orig_deps) - - _print_pkg_deps(atom, orig_deps) - rc_ask = entropy_server.ask_question(_("Confirm ?")) - if rc_ask == _("No"): - continue - - - w_dbconn = entropy_server.open_server_repository(repo, - read_only = False) - - # save new dependencies - while True: - try: - w_dbconn.removeDependencies(idpackage) - w_dbconn.insertDependencies(idpackage, insert_deps) - w_dbconn.commit() - except (KeyboardInterrupt, SystemExit,): - continue - break - - # now bump, this makes EAPI=3 differential db sync happy - old_pkg_data = w_dbconn.getPackageData(idpackage) - w_dbconn.handlePackage(old_pkg_data) - - print_info(brown(" @@ ")+"%s: %s" % (blue(atom), - darkgreen(_("dependencies updated successfully")),)) - - entropy_server.close_repositories() - return 0 - -def _package_mask(entropy_server, args): - - if len(args) < 2: - print_error(darkred(" !!! ")+red(_("Invalid syntax."))) - return 1 - repo = args[0] - packages = args[1:] - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_set = SYS_SET[sys_settings_plugin_id]['server'] - if repo not in srv_set['repositories']: - print_error(darkred(" !!! ")+red(_("No valid repository specified."))) - return 3 - - print_info(brown(" @@ ") + teal(_("Masking")) + " " + \ - ', '.join(packages) + " " + _("in") + " " + bold(str(repo)) + \ - " %s..." % (purple(_("repository")),) ) - - # taint repository - w_dbconn = entropy_server.open_server_repository(repo, read_only = False) - status = entropy_server.mask_packages(repo, packages) - entropy_server.close_repositories() - if status: - return 0 - return 1 - -def _package_unmask(entropy_server, args): - - if len(args) < 2: - print_error(darkred(" !!! ")+red(_("Invalid syntax."))) - return 1 - repo = args[0] - packages = args[1:] - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - srv_set = SYS_SET[sys_settings_plugin_id]['server'] - if repo not in srv_set['repositories']: - print_error(darkred(" !!! ")+red(_("No valid repository specified."))) - return 3 - - print_info(brown(" @@ ") + teal(_("Unmasking")) + " " + \ - ', '.join(packages) + " " + _("in") + " " + bold(str(repo)) + \ - " %s..." % (purple(_("repository")),) ) - - # taint repository - w_dbconn = entropy_server.open_server_repository(repo, read_only = False) - status = entropy_server.unmask_packages(repo, packages) - entropy_server.close_repositories() - if status: - return 0 - return 1 - -def _package_move_copy(entropy_server, args, repoid, cmd, repoid_dest, - pull_deps): - - package_ids = [] - - # from repo: repoid - # to repo: repoid_dest - # atoms: args - - if args: - # match - for package in args: - p_matches, p_rc = entropy_server.atom_match(package, - match_repo = [repoid], multi_match = True) - if not p_matches: - print_warning( brown(" * ") + \ - red("%s: " % (_("Cannot match"),) )+bold(package) + \ - red(" %s " % (_("in"),) )+bold(repoid) + \ - red(" %s" % (_("repository"),) ) - ) - else: - package_ids += [pkg_id for pkg_id, r_id in p_matches if \ - (pkg_id not in package_ids)] - - if not package_ids: - return 1 - - rc = 1 - if cmd == "move": - rc = entropy_server.move_packages(package_ids, repoid, repoid_dest, - pull_dependencies = pull_deps) - elif cmd == "copy": - rc = entropy_server.copy_packages(package_ids, repoid, repoid_dest, - pull_dependencies = pull_deps) - - if rc: - return 0 - return 1 - -def _remove_packages(entropy_server, args, request_nodeps): - - print_info(darkgreen(" * ") + \ - red("%s..." % (_("Matching packages to remove"),) ), back = True) - if not args: - print_error(brown(" * ")+red(_("Not enough parameters"))) - return 1 - - def_repo = entropy_server.repository() - dbconn = entropy_server.open_repository(def_repo) - pkglist = set() - for atom in args: - pkg = dbconn.atomMatch(atom, multiMatch = True) - for idpackage in pkg[0]: - pkglist.add(idpackage) - - pkg_matches = [(x, def_repo) for x in pkglist] - if not request_nodeps: - # entropy_server.repository() - pkg_matches = entropy_server.get_reverse_queue(pkg_matches, - system_packages = False) - - if not pkg_matches: - print_error(brown(" * ")+red("%s." % (_("No packages found"),) )) - return 2 - - print_info(darkgreen(" * ") + \ - red("%s:" % (_("These are the packages that would be removed from the database"),) )) - repo_map = {} - for idpackage, repo_id in pkg_matches: - repo_db = entropy_server.open_repository(repo_id) - pkgatom = repo_db.retrieveAtom(idpackage) - print_info(red(" # ") + blue("[") + teal(repo_id) + blue("] ") + \ - purple(pkgatom)) - obj = repo_map.setdefault(repo_id, []) - obj.append(idpackage) - - rc = entropy_server.ask_question(_("Would you like to continue ?")) - if rc == _("No"): - return 0 - - print_info(darkgreen(" * ") + \ - red("%s..." % (_("Removing selected packages"),) )) - for repo_id, idpackages in repo_map.items(): - entropy_server.remove_packages(repo_id, idpackages) - print_info(darkgreen(" * ") + \ - red(_("Packages removed. To remove binary packages, run activator."))) - - return 0 - -def _multiremove_packages(entropy_server, args): - print_info(darkgreen(" * ") + \ - red("%s..." % (_("Searching injected packages to remove"),) ), - back = True) - - repository_id = entropy_server.repository() - dbconn = entropy_server.open_server_repository(repository_id, - read_only = True, no_upload = True) - - idpackages = set() - if not args: - allidpackages = dbconn.listAllPackageIds() - for idpackage in allidpackages: - if dbconn.isInjected(idpackage): - idpackages.add(idpackage) - else: - for atom in args: - match = dbconn.atomMatch(atom, multiMatch = True) - for x in match[0]: - if dbconn.isInjected(x): - idpackages.add(x) - - if not idpackages: - print_error(brown(" * ")+red("%s." % (_("No packages found"),) )) - return 1 - - print_info(darkgreen(" * ") + \ - blue("%s:" % ( - _("These are the injected packages pulled in for removal"),) )) - - for idpackage in idpackages: - pkgatom = dbconn.retrieveAtom(idpackage) - print_info(darkred(" # ")+brown(pkgatom)) - - # ask to continue - rc = entropy_server.ask_question(_("Would you like to continue ?")) - if rc == _("No"): - return 0 - - print_info(green(" * ")+red("%s ..." % (_("Removing selected packages"),) )) - entropy_server.remove_packages(repository_id, idpackages) - - entropy_server.close_repository(dbconn) - print_info(darkgreen(" * ") + \ - red(_("Packages removed. To remove binary packages, run activator."))) - return 0 - -def _switch_branch(entropy_server, args): - if (len(args) < 2): - print_error(brown(" * ")+red(_("Not enough parameters"))) - return 1 - - from_branch = args[0] - to_branch = args[1] - print_info(darkgreen(" * ")+red(_("Switching branch, be sure to have your packages in sync."))) - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - for repoid in SYS_SET[sys_settings_plugin_id]['server']['repositories']: - - print_info(darkgreen(" * ")+"%s %s %s: %s" % ( - blue(_("Collecting packages that would be marked")), - bold(to_branch), blue(_("on")), purple(repoid),) ) - - dbconn_old = entropy_server.open_server_repository(repoid, - read_only = True, no_upload = True, use_branch = from_branch, - do_treeupdates = False) - pkglist = dbconn_old.listAllPackageIds() - - print_info(darkgreen(" * ")+"%s %s: %s %s" % ( - blue(_("These are the packages that would be marked")), - bold(to_branch), len(pkglist), darkgreen(_("packages")),)) - - rc = entropy_server.ask_question(_("Would you like to continue ?")) - if rc == _("No"): - return 4 - - status = entropy_server._switch_packages_branch(repoid, from_branch, - to_branch) - if status is None: - return 1 - - switched, already_switched, ignored, not_found, no_checksum = status - if not_found or no_checksum: - return 1 - return 0 - -def _restore_repository(entropy_server): - - db_file = entropy_server._get_local_repository_file( - entropy_server.repository()) - db_dir = os.path.dirname(db_file) - dblist = entropy_server.installed_repository_backups( - repository_directory = db_dir) - if not dblist: - print_info(brown(" @@ ")+blue("%s." % ( - _("No backed up databases found"),))) - return 1 - - mydblist = [] - db_data = [] - for mydb in dblist: - ts = os.path.getmtime(mydb) - mytime = entropy.tools.convert_unix_time_to_human_time(ts) - mydblist.append("[%s] %s" % (mytime, mydb,)) - db_data.append(mydb) - - def fake_cb(s): - return s - - input_params = [ - ('db', ('combo', (_('Select the database you want to restore'), - mydblist),), fake_cb, True) - ] - - while True: - data = entropy_server.input_box( - red(_("Entropy installed packages database restore tool")), - input_params, cancel_button = True) - if data is None: - return 1 - myid, dbx = data['db'] - print(dbx) - try: - dbpath = db_data.pop(myid) - except IndexError: - continue - if not os.path.isfile(dbpath): - continue - break - - # make sure to close all repos before restoring - entropy_server.close_repositories() - status, err_msg = entropy_server.restore_repository(dbpath, db_file, - entropy_server.repository()) - if status: - return 0 - return 1 - -def repositories(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _repositories(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _repositories(entropy_server, options): - - valid_repos = entropy_server.available_repositories() - repoid = None - repoid_dest = None - pull_deps = False - invalid_repos = False - request_noask = False - request_sync = False - request_nodeps = False - - if not options: - cmd = "" - else: - cmd = options[0] - myopts = [] - for opt in options[1:]: - - if opt == "--sync": - request_sync = True - elif opt == "--noask": - request_noask = True - elif opt == "--nodeps": - request_nodeps = True - elif cmd in ["enable", "disable"]: - if opt not in valid_repos: - invalid_repos = True - repoid = opt - elif cmd in ["move", "copy"]: - if repoid is None: - repoid = opt - elif repoid_dest is None: - if opt not in valid_repos: - invalid_repos = True - repoid_dest = opt - elif opt == "--deps": - pull_deps = True - else: - myopts.append(opt) - elif cmd == "default": - if repoid is None: - repoid = opt - else: - myopts.append(opt) - else: - myopts.append(opt) - - repoid_required_cmds = ("enable", "disable", "copy", "move", "default") - if cmd in repoid_required_cmds and not repoid: - print_error(darkred(" !!! ") + \ - red(_("No valid repositories specified."))) - return 2 - - if invalid_repos: - print_error(darkred(" !!! ") + \ - red(_("Invalid repositories specified."))) - return 2 - - # default repository identifier - default_repository_id = entropy_server.repository() - - if cmd == "enable": - return _enable_repo(entropy_server, repoid) - - elif cmd == "disable": - return _disable_repo(entropy_server, repoid) - - elif cmd == "default": - entropy_server.switch_default_repository(repoid, save = True) - return 0 - - elif cmd == "package-dep-check": - return _package_dep_check(entropy_server, myopts) - - elif cmd == "package-tag": - return _package_tag(entropy_server, myopts) - - elif cmd == "package-dep": - return _package_dep(entropy_server, myopts) - - elif cmd == "package-mask": - return _package_mask(entropy_server, myopts) - - elif cmd == "package-unmask": - return _package_unmask(entropy_server, myopts) - - elif cmd in ["move", "copy"]: - return _package_move_copy(entropy_server, myopts, repoid, cmd, - repoid_dest, pull_deps) - - elif cmd == "remove": - return _remove_packages(entropy_server, myopts, request_nodeps) - - elif cmd == "multiremove": - return _multiremove_packages(entropy_server, myopts) - - elif cmd == "init": - rc = entropy_server.initialize_repository(default_repository_id) - if rc == 0: - print_info(darkgreen(" * ") + \ - red(_("Entropy repository has been initialized"))) - return rc - - elif cmd == "create-empty-database": - dbpath = None - if myopts: - dbpath = myopts[0] - if dbpath is None: - return -10 - print_info(darkgreen(" * ")+red("%s: " % ( - _("Creating empty database to"),) ) + dbpath) - if os.path.isfile(dbpath): - print_error(darkgreen(" * ")+red("%s: " % ( - _("Cannot overwrite already existing file"),) )+dbpath) - return 1 - entropy_server._setup_empty_repository(dbpath) - return 0 - - elif cmd == "switchbranch": - return _switch_branch(entropy_server, myopts) - - elif cmd == "flushback": - - if not myopts: - print_error(brown(" * ")+red(_("Not enough parameters"))) - return 1 - return entropy_server.flushback_packages(default_repository_id, - myopts) - - elif cmd == "md5remote": - - entropy_server._verify_remote_packages(default_repository_id, myopts, - ask = not request_noask) - return 0 - - elif cmd == "bump": - - print_info(green(" * ")+red("%s..." % ( - _("Bumping Repository database"),) )) - entropy_server._bump_database(entropy_server.repository()) - if request_sync: - errors = entropy_server.Mirrors.sync_repository( - entropy_server.repository()) - return 0 - - elif cmd == "backup": - - db_path = entropy_server._get_local_repository_file( - entropy_server.repository()) - # make sure to close all repos before backing-up - entropy_server.close_repositories() - rc, err_msg = entropy_server.backup_repository( - entropy_server.repository(), os.path.dirname(db_path)) - if not rc: - print_info(darkred(" ** ")+red("%s: %s" % ( - _("Error"), err_msg,) )) - return 1 - return 0 - - elif cmd == "restore": - return _restore_repository(entropy_server) - - return -10 - -def update(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _update(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _update(entropy_server, options): - - # differential checking - # collect differences between the packages in the database - # and the ones on the system - - r_request_seek_store = False - r_request_repackage = False - r_request_ask = True - r_request_only_atoms = False - r_request_interactive = False - - repackage_items = [] - only_atoms = [] - _options = [] - for opt in options: - if opt == "--seekstore": - r_request_seek_store = True - elif opt == "--repackage": - r_request_repackage = True - r_request_only_atoms = False - elif opt == "--atoms": - r_request_only_atoms = True - r_request_repackage = False - elif opt == "--noask": - r_request_ask = False - elif opt == "--interactive": - r_request_interactive = True - else: - if r_request_repackage and (not opt.startswith("--")): - if not opt in repackage_items: - repackage_items.append(opt) - continue - elif r_request_only_atoms and (not opt.startswith("--")): - if not opt in only_atoms: - only_atoms.append(opt) - continue - _options.append(opt) - options = _options - - to_be_added = set() - to_be_removed = set() - to_be_injected = set() - - key_sorter = lambda x: \ - entropy_server.open_repository(x[1]).retrieveAtom(x[0]) - repository_id = entropy_server.repository() - generated_packages = [] - - if not r_request_seek_store: - - if repackage_items: - - packages = [] - dbconn = entropy_server.open_server_repository(repository_id, - read_only = True, no_upload = True) - - spm = entropy_server.Spm() - for item in repackage_items: - match = dbconn.atomMatch(item) - if match[0] == -1: - print_warning(darkred(" !!! ") + \ - red(_("Cannot match"))+" "+bold(item)) - else: - cat = dbconn.retrieveCategory(match[0]) - name = dbconn.retrieveName(match[0]) - version = dbconn.retrieveVersion(match[0]) - spm_pkg = os.path.join(cat, name + "-" + version) - spm_build = spm.get_installed_package_build_script_path( - spm_pkg) - spm_pkg_dir = os.path.dirname(spm_build) - if os.path.isdir(spm_pkg_dir): - packages.append((spm_pkg, 0)) - - if packages: - to_be_added |= set(packages) - else: - print_info(brown(" * ") + \ - red(_("No valid packages to repackage."))) - - - # normal scanning - print_info(brown(" * ") + \ - red("%s..." % (_("Scanning database for differences"),) )) - try: - myadded, to_be_removed, to_be_injected = \ - entropy_server.scan_package_changes() - except KeyboardInterrupt: - return 1 - to_be_added |= myadded - - if only_atoms: - to_be_removed.clear() - to_be_injected.clear() - tba = dict(((x[0], x,) for x in to_be_added)) - tb_added_new = set() - for myatom in only_atoms: - if myatom in tba: - tb_added_new.add(tba.get(myatom)) - continue - try: - inst_myatom = entropy_server.Spm().match_installed_package(myatom) - except KeyError: - print_warning(darkred(" !!! ")+red(_("Invalid atom"))+" "+bold(myatom)) - continue - if inst_myatom in tba: - tb_added_new.add(tba.get(inst_myatom)) - to_be_added = tb_added_new - - if not (len(to_be_removed)+len(to_be_added)+len(to_be_injected)): - print_info(brown(" * ")+red("%s." % (_("Zarro thinggz totoo"),) )) - return 0 - - if to_be_injected: - print_info(brown(" @@ ")+blue("%s:" % (_("These are the packages that would be changed to injected status"),) )) - for idpackage, repoid in sorted(to_be_injected, key = key_sorter): - dbconn = entropy_server.open_server_repository(repoid, read_only = True, no_upload = True) - atom = dbconn.retrieveAtom(idpackage) - print_info(brown(" # ")+"["+blue(repoid)+"] "+red(atom)) - if r_request_ask: - rc = entropy_server.ask_question(">> %s" % (_("Would you like to transform them now ?"),) ) - else: - rc = _("Yes") - if rc == _("Yes"): - for idpackage, repoid in sorted(to_be_injected, key = key_sorter): - dbconn = entropy_server.open_server_repository(repoid, read_only = True, no_upload = True) - atom = dbconn.retrieveAtom(idpackage) - print_info(brown(" <> ")+blue("%s: " % (_("Transforming from database"),) )+red(atom)) - entropy_server._transform_package_into_injected(idpackage, repoid) - print_info(brown(" @@ ")+blue("%s." % (_("Database transform complete"),) )) - - def show_rm(idpackage, repoid): - dbconn = entropy_server.open_server_repository(repoid, read_only = True, - no_upload = True) - atom = dbconn.retrieveAtom(idpackage) - exp_string = '' - pkg_expired = entropy_server._is_match_expired((idpackage, repoid,)) - if pkg_expired: - exp_string = "|%s" % (purple(_("expired")),) - print_info(brown(" # ")+"["+blue(repoid)+exp_string+"] "+red(atom)) - - if r_request_interactive and to_be_removed: - print_info(brown(" @@ ")+blue(_("So sweetheart, what packages do you want to remove ?"))) - new_to_be_removed = set() - for idpackage, repoid in sorted(to_be_removed, key = key_sorter): - show_rm(idpackage, repoid) - rc = entropy_server.ask_question(">> %s" % (_("Remove this package?"),)) - if rc == _("Yes"): - new_to_be_removed.add((idpackage, repoid,)) - to_be_removed = new_to_be_removed - - if to_be_removed: - - print_info(brown(" @@ ")+blue("%s:" % (_("These are the packages that would be removed from the database"),) )) - for idpackage, repoid in sorted(to_be_removed, key = key_sorter): - show_rm(idpackage, repoid) - - if r_request_ask: - rc = entropy_server.ask_question(">> %s" % (_("Would you like to remove them now ?"),) ) - else: - rc = _("Yes") - if rc == _("Yes"): - remdata = {} - for idpackage, repoid in to_be_removed: - if repoid not in remdata: - remdata[repoid] = set() - remdata[repoid].add(idpackage) - for repoid in remdata: - entropy_server.remove_packages(repoid, remdata[repoid]) - - if r_request_interactive and to_be_added: - print_info(brown(" @@ ")+blue(_("So sweetheart, what packages do you want to add ?"))) - new_to_be_added = set() - for tb_atom, tb_counter in sorted(to_be_added, key = lambda x: x[0]): - print_info(brown(" # ")+red(tb_atom)) - rc = entropy_server.ask_question(">> %s" % (_("Add this package?"),)) - if rc == _("Yes"): - new_to_be_added.add((tb_atom, tb_counter,)) - to_be_added = new_to_be_added - - if to_be_added: - - print_info(brown(" @@ ")+blue("%s:" % (_("These are the packages that would be added/updated"),) )) - items = sorted([x[0] for x in to_be_added]) - for item in items: - item_txt = purple(item) - - - # this is a spm atom - spm_key = entropy.dep.dep_getkey(item) - try: - spm_slot = entropy_server.Spm().get_installed_package_metadata( - item, "SLOT") - spm_repo = entropy_server.Spm().get_installed_package_metadata( - item, "repository") - except KeyError: - spm_slot = None - spm_repo = None - - # - # inform user about SPM repository sources moves !! - # - etp_repo = None - if spm_repo is not None: - pkg_id, repo_id = entropy_server.atom_match(spm_key, - match_slot = spm_slot) - if repo_id != 1: - repo_db = entropy_server.open_server_repository( - repo_id, just_reading = True) - etp_repo = repo_db.retrieveSpmRepository(pkg_id) - - if (etp_repo is not None) and (etp_repo != spm_repo): - item_txt += ' [%s {%s=>%s}]' % (bold(_("warning")), - darkgreen(etp_repo), blue(spm_repo),) - - print_info(brown(" # ")+item_txt) - - if r_request_ask: - rc = entropy_server.ask_question(">> %s (%s %s)" % ( - _("Would you like to package them now ?"), - _("inside"), - repository_id, - ) - ) - if rc == _("No"): - return 0 - - problems = entropy_server._check_config_file_updates() - if problems: - return 1 - - # package them - print_info(brown(" @@ ")+blue("%s..." % (_("Compressing packages"),) )) - store_dir = entropy_server._get_local_store_directory(repository_id) - for x in sorted(to_be_added): - print_info(brown(" # ")+teal(x[0])) - try: - pkg_list = entropy_server.Spm().generate_package(x[0], - store_dir) - generated_packages.append(pkg_list) - except OSError: - entropy.tools.print_traceback() - print_info(brown(" !!! ")+bold("%s..." % ( - _("Ignoring broken Spm entry, please recompile it"),) )) - - if not generated_packages: - print_info(brown(" * ")+red(_("Nothing to do, check later."))) - # then exit gracefully - return 0 - - etp_pkg_files = [(pkg_list, False) for pkg_list in generated_packages] - idpackages = entropy_server.add_packages_to_repository( - repository_id, etp_pkg_files) - - if idpackages: - # checking dependencies and print issues - entropy_server.extended_dependencies_test([repository_id]) - entropy_server.close_repositories() - print_info(green(" * ") + red("%s: " % (_("Statistics"),) ) + \ - blue("%s: " % (_("Entries handled"),) ) + bold(str(len(idpackages)))) - return 0 - -def status(): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _status(server) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _status(entropy_server): - - sys_settings_plugin_id = \ - etpConst['system_settings_plugins_ids']['server_plugin'] - repos_data = SYS_SET[sys_settings_plugin_id]['server']['repositories'] - repo_id = entropy_server.repository() - - repo_data = repos_data[repo_id] - repo_rev = entropy_server.local_repository_revision(repo_id) - store_dir = entropy_server._get_local_store_directory(repo_id) - upload_basedir = entropy_server._get_local_upload_directory(repo_id) - upload_files, upload_packages = \ - entropy_server.Mirrors._calculate_local_upload_files(repo_id) - key_sorter = lambda x: \ - entropy_server.open_repository(x[1]).retrieveAtom(x[0]) - - to_be_added, to_be_removed, to_be_injected = \ - entropy_server.scan_package_changes() - - to_be_added = [x[0] for x in to_be_added] - to_be_added.sort() - - toc = [] - - toc.append("[%s] %s" % (purple(repo_id), - brown(repo_data['description']),)) - toc.append((" %s:" % (blue(_("local revision")),), - str(repo_rev),)) - - store_pkgs = [] - if os.path.isdir(store_dir): - store_pkgs = os.listdir(store_dir) - - toc.append((" %s:" % (darkgreen(_("stored packages")),), - str(len(store_pkgs)),)) - for pkg_rel in sorted(store_pkgs): - toc.append((" ", brown(pkg_rel))) - - toc.append((" %s:" % (darkgreen(_("upload packages")),), - str(upload_files),)) - for pkg_rel in sorted(upload_packages): - toc.append((" ", brown(pkg_rel))) - - unstaged_len = len(to_be_added) + len(to_be_removed) + len(to_be_injected) - toc.append((" %s:" % (darkgreen(_("unstaged packages")),), - str(unstaged_len),)) - - print_table(toc) - del toc[:] - print_info("") - - def _get_spm_slot_repo(pkg_atom): - try: - spm_slot = entropy_server.Spm().get_installed_package_metadata( - pkg_atom, "SLOT") - spm_repo = entropy_server.Spm().get_installed_package_metadata( - pkg_atom, "repository") - except KeyError: - spm_repo = None - spm_slot = None - return spm_slot, spm_repo - - for pkg_atom in to_be_added: - spm_slot, spm_repo = _get_spm_slot_repo(pkg_atom) - - pkg_str = teal(pkg_atom) - if spm_repo is not None: - pkg_id, repo_id = entropy_server.atom_match(pkg_atom, - match_slot = spm_slot) - if pkg_id != -1: - etp_repo = entropy_server.open_repository( - repo_id).retrieveSpmRepository(pkg_id) - if etp_repo != spm_repo: - pkg_str += " [%s=>%s]" % ( - etp_repo, spm_repo,) - toc.append((" %s:" % (purple(_("add")),), teal(pkg_str))) - - for package_id, repo_id in sorted(to_be_removed, key = key_sorter): - pkg_atom = entropy_server.open_repository(repo_id).retrieveAtom( - package_id) - toc.append((" %s:" % (darkred(_("remove")),), brown(pkg_atom))) - - for package_id, repo_id in sorted(to_be_injected, key = key_sorter): - pkg_atom = entropy_server.open_repository(repo_id).retrieveAtom( - package_id) - toc.append((" %s:" % (bold(_("switch injected")),), - darkgreen(pkg_atom))) - - print_table(toc) - - return 0 - -def spm(options): - acquired = False - server = None - try: - server = get_entropy_server() - acquired = entropy.tools.acquire_entropy_locks(server) - if not acquired: - print_error(darkgreen(_("Another Entropy is currently running."))) - return 1 - return _spm(server, options) - finally: - if server is not None: - if acquired: - entropy.tools.release_entropy_locks(server) - server.shutdown() - -def _spm(entropy_server, options): - - if not options: - return 0 - - opts = [] - do_list = False - do_rebuild = False - do_dbsync = False - do_dbupdate = False - for opt in options: - if opt == "--list": - do_list = True - elif opt == "--rebuild": - do_rebuild = True - elif opt == "--dbsync": - do_dbsync = True - elif opt == "--dbupdate": - do_dbupdate = True - else: - opts.append(opt) - options = opts[:] - del opts - - action = options[0] - - if action == "compile": - options = options[1:] - if not options: - return 1 - - if options[0] == "categories": - return _spm_compile_categories(entropy_server, - options[1:], do_list = do_list) - elif options[0] == "pkgset": - return _spm_compile_pkgset(entropy_server, - options[1:], do_rebuild = do_rebuild, - do_dbupdate = do_dbupdate, do_dbsync = do_dbsync) - - elif action == "orphans": - not_found = entropy_server.orphaned_spm_packages_test() - return 0 - - elif action == "new": - spm = entropy_server.Spm() - spm_avail = spm.get_packages(categories = options) - spm_installed = spm.get_installed_packages(categories = options) - spm_avail_exp = set((x, spm.get_package_metadata(x, "SLOT")) for x \ - in spm_avail) - spm_installed_exp = set((x, spm.get_installed_package_metadata(x, - "SLOT")) for x in spm_installed) - - newly_available = sorted(spm_avail_exp - spm_installed_exp) - - print_info(brown(" @@ ")+blue("%s:" % (_("These are the newly available packages, either updatable or not installed"),) )) - if etpUi['quiet']: - print_generic(' '.join(["=%s:%s" % (x, y) for x, y in \ - newly_available])) - else: - for pkg, slot in newly_available: - print_info(red(" # =") + teal(pkg) + blue(":") + purple(slot)) - return 0 - - return -10 - -def _spm_compile_categories(entropy_server, options, do_list = False): - - # --nooldslots support - oldslots = "--nooldslots" not in options - if not oldslots: - while True: - try: - options.remove("--nooldslots") - except ValueError: - break - - spm = entropy_server.Spm() - categories = sorted(set(options)) - packages = spm.get_packages(categories) - packages = sorted(packages) - - # remove older packages from list (through slot) - if not oldslots: - oldslots_meta = {} - for package in packages: - pkg_slot = spm.get_package_metadata(package, "SLOT") - pkg_key = entropy.dep.dep_getkey(package) - obj = oldslots_meta.setdefault(pkg_key, set()) - obj.add((pkg_slot, package,)) - del packages[:] - for pkg_key in sorted(oldslots_meta): - slots_data = sorted(oldslots_meta[pkg_key]) - packages.append(slots_data[-1][1]) - - if do_list: - print_generic(' '.join(["="+x for x in packages])) - else: - return spm.compile_packages(["="+x for x in packages], - ask = True, verbose = True, coloured_output = True) - return 0 - -def _spm_compile_pkgset(entropy_server, pkgsets, do_rebuild = False, - do_dbupdate = False, do_dbsync = False): - - if not pkgsets: - print_error(bold(" !!! ")+darkred("%s." % ( - _("No package sets found"),) )) - return 1 - - # filter available sets - avail_sets = entropy_server.Spm().get_package_sets(False) - for pkgset in pkgsets: - if pkgset not in avail_sets: - print_error(bold(" !!! ")+darkred("%s: %s" % ( - _("package set not found"), pkgset,) )) - return 1 - - spm = entropy_server.Spm() - - done_atoms = set() - - # expand package sets - for pkgset in pkgsets: - - set_atoms = [spm.match_package(x) for x in avail_sets[pkgset]] - set_atoms = [x for x in set_atoms if x] - - if not do_rebuild: - new_set_atoms = [] - for set_atom in set_atoms: - try: - if not spm.match_installed_package(set_atom): - new_set_atoms.append(set_atom) - except KeyError: - continue - set_atoms = new_set_atoms - - set_atoms = ["="+x for x in set_atoms] - if not set_atoms: - continue - - rc = spm.compile_packages(set_atoms, verbose = etpUi['verbose'], - ask = etpUi['ask'], pretend = etpUi['pretend'], - coloured_output = True) - if rc != 0: - return rc - done_atoms.update(set_atoms) - - if not done_atoms: - print_warning(red(" @@ ")+blue("%s." % ( - _("Nothing to do"),) )) - return 0 - - # compilation went fine, now push into entropy - if do_dbsync: - do_dbupdate = True - - if do_dbupdate: - dbopts = [] - if not etpUi['ask']: - dbopts.append("--noask") - dbopts.append("--atoms") - dbopts.extend(sorted(done_atoms)) - rc = _update(entropy_server, dbopts) - entropy_server.close_repositories() - if rc != 0: - return rc - - if do_dbsync: - import server_activator - actopts = [] - if not etpUi['ask']: - actopts.append("--noask") - rc = server_activator.sync(actopts) - if rc != 0: - return rc - - return 0 From bc8eac7eec38eefc3bdb4e692bfc7bd3f164725b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:17:40 +0200 Subject: [PATCH 93/99] [entropy.server.interfaces.db] community_repo variable has been killed --- libraries/entropy/server/interfaces/db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entropy/server/interfaces/db.py b/libraries/entropy/server/interfaces/db.py index b73f20e74..19818998c 100644 --- a/libraries/entropy/server/interfaces/db.py +++ b/libraries/entropy/server/interfaces/db.py @@ -1625,6 +1625,7 @@ Name: %s srv_set = self._settings[plg_id]['server'] qa_sets = self._settings[plg_id]['qa_sets'] base_repo = srv_set['base_repository_id'] + community_mode = srv_set['community_mode'] if base_repo is None: base_repo = self._repository_id @@ -1677,8 +1678,7 @@ Name: %s # missing dependencies QA test deps_not_found = self._entropy.extended_dependencies_test( [self._repository_id]) - if deps_not_found \ - and not self._entropy.community_repo: + if deps_not_found and not community_mode: self._entropy.output( "[repo:%s|%s] %s: %s" % ( From ab19233ab4987ada19aa5cb9670e828955260f6d Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:21:21 +0200 Subject: [PATCH 94/99] [reagent] goodbye man page --- docs/man/reagent.pod | 435 ------------------------------------------- 1 file changed, 435 deletions(-) delete mode 100644 docs/man/reagent.pod diff --git a/docs/man/reagent.pod b/docs/man/reagent.pod deleted file mode 100644 index 369bba771..000000000 --- a/docs/man/reagent.pod +++ /dev/null @@ -1,435 +0,0 @@ -=head1 NAME - -B - Official Sabayon Linux Server-Side Package Management tool - -=head1 SYNOPSIS - -B [action] [basic_options] [options] [atom | package_file | @set] ... - -B [action] [basic_options] [options] ... - -B --help - -B --version - -=head1 DESCRIPTION - -B is a server-side repository administration tool used to sync Portage -database with Entropy by phisically creating package files and updating Entropy -repository database. - -=head1 BASIC_OPTIONS - -=over - -=item B<--help (-h)> - -this output - -=item B<--version> - -print version - -=item B<--nocolor> - -disable colorized output - -=item B<--color> - -force colorized output - -=back - -=head1 OPTIONS - -=over - -=item B - -show current repositories status - -=item B - -scan the System looking for newly compiled packages - -=over - - -=item B<--seekstore> - -analyze the Entropy Store directory directly - -=item B<--repackage > - -repackage the specified atoms - -=item B<--noask> - -do not ask anything except critical things - -=item B<--atoms > - -manage only the specified atoms - -=item B<--interactive> - -run in interactive mode (asking things one by one) - -=back - - -=item B> - -add binary packages to repository w/o affecting scopes (multipackages) - -=item B - -do some searches into repository databases - -=over - - -=item B - -search packages inside the default repository database - -=item B - -match package dependency inside the default repository database - -=item B - -show runtime libraries needed by the provided atoms - -=item B - -show packages owning the specified tags - -=item B - -search available package sets - -=item B - -show files owned by the provided atoms - -=item B - -show from what package the provided files belong - -=item B - -search packages by description - -=item B - -list all the packages in the default repository - -=item B - -show direct depdendencies tree for provided installable atoms - -=over - -=item B<--complete> - -include system packages, build deps and circularity information - -=back - -=item B - -show reverse depdendencies tree for provided installed atoms - -=over - -=item B<--complete> - -include system packages, build deps and circularity information - -=back - -=item B<--verbose> - -show more details - -=item B<--quiet> - -print results in a scriptable way - -=back - - -=item B - -manage a repository - -=over - - -=item B - -(re)initialize the current repository - - -=item B - -manually force a revision bump for the current repository database - -=over - - -=item B<--sync> - -synchronize the database - -=back - - -=item B - -flush back old branches packages to current branch - -=item B - -remove the provided atoms from the current repository database - -=over - -=item B<--nodeps> - -do not include reverse dependencies - -=back - -=item B - -remove the provided injected atoms (all if no atom specified) - -=item B - -create an empty repository database in the provided path - -=item B > - -switch to the specified branch the repository - -=item B - -verify remote integrity of the provided atoms - -=item B - -backup current repository database - -=item B - -restore a previously backed-up repository database - -=item B> - -enable the specified repository - -=item B> - -disable the specified repository - -=item B [atoms]> - -check packages in repository for missing dependencies - -=item B [atoms]> - -handle packages dependencies - -=item B [atoms]> - -clone a package assigning it an arbitrary tag - -=item B [atoms]> - -mask given package in given repository - -=item B [atoms]> - -unmask given package in given repository - -=item B [atoms]> - -move packages from a repository to another - -=item B [atoms]> - -copy packages from a repository to another - -=item B> - -set the default repository - -=back - - -=item B - -manage repository digital signatures (OpenGPG) - -=over - - -=item B - -create keypair for repositories and sign packages - -=item B - -delete keypair (and digital signatures) of repository - -=item B - -show currently configured keys information for given repositories - -=item B - -sign (or re-sign) packages in repository using currently set keypair - -=item B > - -import keypair, bind to given repository - -=item B > - -export public key of given repository - -=back - -=item B > - -export private key of given repository - -=back - - -=item B - -source package manager functions - -=over - - -=item B - -compilation function - -=over - - -=item B - -compile packages belonging to the provided categories - -=over - - -=item B<--list> - -just list packages - -=back - - -=item B - -compile packages in provided package set names - -=over - - -=item B<--list> - -just list packages - -=item B<--rebuild> - -rebuild everything - -=item B<--dbupdate> - -run database update if all went fine - -=item B<--dbsync> - -run mirror sync if all went fine - -=back - -=back - - -=item B - -scan orphaned packages in SPM - -=item B - -scan new packages available in SPM - -=back - - -=item B - -look for unsatisfied dependencies - -=item B - -look for missing libraries (scan system) - -=over - -=item B<--dump> - -dump results to files - -=back - -=item B - -look for missing libraries (scan repository metadata) - -=item B - -verify the integrity of local package files - -=item B - -regenerate reverse dependencies metadata - -=item B - -regenerate the library paths table - -=item B - -remove downloaded packages and clean temp. directories) - - -=head1 ENVIRONMENT - --B=valid repository id: on-the-fly switch default Entropy repository. - -=head1 BUGS - -Please report bugs to http://bugs.sabayonlinux.org. - -=head1 EXIT STATUS - -B returns a zero exit status if the called command succeeded. Non zero -is returned in case of failure. - -=head1 AUTHOR - -Fabio Erculiani - -=head1 SEE ALSO - -activator(1), equo(1) \ No newline at end of file From b6acea37a08195495f8eccefb836d594b6148998 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:21:32 +0200 Subject: [PATCH 95/99] [activator] goodbye man page --- docs/man/activator.pod | 219 ----------------------------------------- 1 file changed, 219 deletions(-) delete mode 100644 docs/man/activator.pod diff --git a/docs/man/activator.pod b/docs/man/activator.pod deleted file mode 100644 index 8fa160f53..000000000 --- a/docs/man/activator.pod +++ /dev/null @@ -1,219 +0,0 @@ -=head1 NAME - -B - Official Sabayon Linux Server-Side Repositories Management tool. - -=head1 SYNOPSIS - -B [action] [basic_options] [options] [atom | package_file | @set] ... - -B [action] [basic_options] [options] ... - -B --help - -B --version - -=head1 DESCRIPTION - -B is a server-side repository administration tool used to handle -remote Entropy repository mirrors. - -=head1 BASIC_OPTIONS - -=over - -=item B<--help (-h)> - -this output - -=item B<--version> - -print version - -=item B<--nocolor> - -disable colorized output - -=item B<--color> - -force colorized output - -=back - -=head1 OPTIONS - -=over - - -=item B - -sync packages, database and also do some tidy - -=over - - -=item B<--branch=> - -choose on what branch operating - -=item B<--noask> - -do not ask anything except critical things - -=item B<--syncall> - -sync all the configured repositories - -=back - - -=item B> - -same as sync, but put repository database ONLY into a dummy repository - -=item B - -remove binary packages not in repositories and expired - -=item B - -package repositories handling functions - -=over - - -=item B - -sync package repositories across primary mirrors - -=over - - -=item B<--ask> - -ask before making any changes - -=item B<--pretend> - -only show what would be done - -=item B<--syncall> - -sync all the configured repositories - -=item B<--do-packages-check> - -also verify packages integrity - -=back - -=back - - -=item B - -repository handling functions - -=over - - -=item B - -sync the current repository database across primary mirrors - -=over - - -=item B<--syncall> - -sync all the configured repositories - -=back - - -=item B> - -same as sync, but put repository database ONLY into a dummy repository - - -=item B - -clean unavailable packages from mirrors (similar to tidy, but more nazi) - -=over - - -=item B<--days=> - -expiration days [default is: 0] - -=back - - -=item B - -lock the current repository database (server-side) - -=item B - -unlock the current repository database (server-side) - -=item B - -lock the current repository database (client-side) - -=item B - -unlock the current repository database (client-side) - -=item B - -show current lock status - -=back - - -=item B - -notice board handling functions - -=over - - -=item B - -add a news item to the notice board - -=item B - -remove a news item from the notice board - -=item B - -read the current notice board - - -=back - -=head1 ENVIRONMENT - -B=valid repository id: on-the-fly switch default Entropy repository. - -B=valid number: on-the-fly removed packages expiration days -setting. - -=head1 BUGS - -Please report bugs to http://bugs.sabayonlinux.org. - -=head1 EXIT STATUS - -B returns a zero exit status if the called command succeeded. Non zero -is returned in case of failure. - -=head1 AUTHOR - -Fabio Erculiani - -=head1 SEE ALSO - -reagent(1), equo(1) From 590afc91d13e269a4c466f09f1d0649e3c7448ae Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:22:21 +0200 Subject: [PATCH 96/99] [man] drop reagent, activator man page files --- docs/man/man1/activator.1 | 296 ------------------------ docs/man/man1/reagent.1 | 462 -------------------------------------- 2 files changed, 758 deletions(-) delete mode 100644 docs/man/man1/activator.1 delete mode 100644 docs/man/man1/reagent.1 diff --git a/docs/man/man1/activator.1 b/docs/man/man1/activator.1 deleted file mode 100644 index f5512a179..000000000 --- a/docs/man/man1/activator.1 +++ /dev/null @@ -1,296 +0,0 @@ -.\" Automatically generated by Pod::Man 2.23 (Pod::Simple 3.16) -.\" -.\" Standard preamble: -.\" ======================================================================== -.de Sp \" Vertical space (when we can't use .PP) -.if t .sp .5v -.if n .sp -.. -.de Vb \" Begin verbatim text -.ft CW -.nf -.ne \\$1 -.. -.de Ve \" End verbatim text -.ft R -.fi -.. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' -.ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" -. ds C` "" -. ds C' "" -'br\} -.el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' -'br\} -.\" -.\" Escape single quotes in literal strings from groff's Unicode transform. -.ie \n(.g .ds Aq \(aq -.el .ds Aq ' -.\" -.\" If the F register is turned on, we'll generate index entries on stderr for -.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index -.\" entries marked with X<> in POD. Of course, you'll have to process the -.\" output yourself in some meaningful fashion. -.ie \nF \{\ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" -.. -. nr % 0 -. rr F -.\} -.el \{\ -. de IX -.. -.\} -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C -.\" ======================================================================== -.\" -.IX Title "ACTIVATOR 1" -.TH ACTIVATOR 1 "2011-08-20" "perl v5.12.3" "Entropy" -.\" For nroff, turn off justification. Always turn off hyphenation; it makes -.\" way too many mistakes in technical documents. -.if n .ad l -.nh -.SH "NAME" -activator \- Official Sabayon Linux Server\-Side Repositories Management tool. -.SH "SYNOPSIS" -.IX Header "SYNOPSIS" -\&\fBactivator\fR [action] [basic_options] [options] [atom | package_file | \f(CW@set\fR] ... -.PP -\&\fBactivator\fR [action] [basic_options] [options] ... -.PP -\&\fBactivator\fR \-\-help -.PP -\&\fBactivator\fR \-\-version -.SH "DESCRIPTION" -.IX Header "DESCRIPTION" -\&\fBactivator\fR is a server-side repository administration tool used to handle -remote Entropy repository mirrors. -.SH "BASIC_OPTIONS" -.IX Header "BASIC_OPTIONS" -.IP "\fB\-\-help (\-h)\fR" 4 -.IX Item "--help (-h)" -this output -.IP "\fB\-\-version\fR" 4 -.IX Item "--version" -print version -.IP "\fB\-\-nocolor\fR" 4 -.IX Item "--nocolor" -disable colorized output -.IP "\fB\-\-color\fR" 4 -.IX Item "--color" -force colorized output -.SH "OPTIONS" -.IX Header "OPTIONS" -.IP "\fBsync\fR" 4 -.IX Item "sync" -sync packages, database and also do some tidy -.RS 4 -.IP "\fB\-\-branch=" 4 -.IX Item "--branch=" -choose on what branch operating -.IP "\fB\-\-noask\fR" 4 -.IX Item "--noask" -do not ask anything except critical things -.IP "\fB\-\-syncall\fR" 4 -.IX Item "--syncall" -sync all the configured repositories -.RE -.RS 4 -.RE -.IP "\fBsyncas " 4 -.IX Item "syncas " -same as sync, but put repository database \s-1ONLY\s0 into a dummy repository -.IP "\fBtidy\fR" 4 -.IX Item "tidy" -remove binary packages not in repositories and expired -.IP "\fBpackages\fR" 4 -.IX Item "packages" -package repositories handling functions -.RS 4 -.IP "\fBsync\fR" 4 -.IX Item "sync" -sync package repositories across primary mirrors -.RS 4 -.IP "\fB\-\-ask\fR" 4 -.IX Item "--ask" -ask before making any changes -.IP "\fB\-\-pretend\fR" 4 -.IX Item "--pretend" -only show what would be done -.IP "\fB\-\-syncall\fR" 4 -.IX Item "--syncall" -sync all the configured repositories -.IP "\fB\-\-do\-packages\-check\fR" 4 -.IX Item "--do-packages-check" -also verify packages integrity -.RE -.RS 4 -.RE -.RE -.RS 4 -.RE -.IP "\fBrepo\fR" 4 -.IX Item "repo" -repository handling functions -.RS 4 -.IP "\fBsync\fR" 4 -.IX Item "sync" -sync the current repository database across primary mirrors -.RS 4 -.IP "\fB\-\-syncall\fR" 4 -.IX Item "--syncall" -sync all the configured repositories -.RE -.RS 4 -.RE -.IP "\fBsyncas " 4 -.IX Item "syncas " -same as sync, but put repository database \s-1ONLY\s0 into a dummy repository -.IP "\fBvacuum\fR" 4 -.IX Item "vacuum" -clean unavailable packages from mirrors (similar to tidy, but more nazi) -.RS 4 -.IP "\fB\-\-days=" 4 -.IX Item "--days=" -expiration days [default is: 0] -.RE -.RS 4 -.RE -.IP "\fBlock\fR" 4 -.IX Item "lock" -lock the current repository database (server-side) -.IP "\fBunlock\fR" 4 -.IX Item "unlock" -unlock the current repository database (server-side) -.IP "\fBdownload-lock\fR" 4 -.IX Item "download-lock" -lock the current repository database (client-side) -.IP "\fBdownload-unlock\fR" 4 -.IX Item "download-unlock" -unlock the current repository database (client-side) -.IP "\fBlock-status\fR" 4 -.IX Item "lock-status" -show current lock status -.RE -.RS 4 -.RE -.IP "\fBnotice\fR" 4 -.IX Item "notice" -notice board handling functions -.RS 4 -.IP "\fBadd\fR" 4 -.IX Item "add" -add a news item to the notice board -.IP "\fBremove\fR" 4 -.IX Item "remove" -remove a news item from the notice board -.IP "\fBread\fR" 4 -.IX Item "read" -read the current notice board -.RE -.RS 4 -.RE -.SH "ENVIRONMENT" -.IX Header "ENVIRONMENT" -\&\fB\s-1ETP_REPO\s0\fR=valid repository id: on-the-fly switch default Entropy repository. -.PP -\&\fB\s-1ETP_EXPIRATION_DAYS\s0\fR=valid number: on-the-fly removed packages expiration days -setting. -.SH "BUGS" -.IX Header "BUGS" -Please report bugs to http://bugs.sabayonlinux.org. -.SH "EXIT STATUS" -.IX Header "EXIT STATUS" -\&\fBactivator\fR returns a zero exit status if the called command succeeded. Non zero -is returned in case of failure. -.SH "AUTHOR" -.IX Header "AUTHOR" -Fabio Erculiani -.SH "SEE ALSO" -.IX Header "SEE ALSO" -\&\fIreagent\fR\|(1), \fIequo\fR\|(1) -.SH "POD ERRORS" -.IX Header "POD ERRORS" -Hey! \fBThe above document had some coding errors, which are explained below:\fR -.IP "Around line 197:" 4 -.IX Item "Around line 197:" -You forgot a '=back' before '=head1' diff --git a/docs/man/man1/reagent.1 b/docs/man/man1/reagent.1 deleted file mode 100644 index 05c41f335..000000000 --- a/docs/man/man1/reagent.1 +++ /dev/null @@ -1,462 +0,0 @@ -.\" Automatically generated by Pod::Man 2.23 (Pod::Simple 3.16) -.\" -.\" Standard preamble: -.\" ======================================================================== -.de Sp \" Vertical space (when we can't use .PP) -.if t .sp .5v -.if n .sp -.. -.de Vb \" Begin verbatim text -.ft CW -.nf -.ne \\$1 -.. -.de Ve \" End verbatim text -.ft R -.fi -.. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' -.ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" -. ds C` "" -. ds C' "" -'br\} -.el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' -'br\} -.\" -.\" Escape single quotes in literal strings from groff's Unicode transform. -.ie \n(.g .ds Aq \(aq -.el .ds Aq ' -.\" -.\" If the F register is turned on, we'll generate index entries on stderr for -.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index -.\" entries marked with X<> in POD. Of course, you'll have to process the -.\" output yourself in some meaningful fashion. -.ie \nF \{\ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" -.. -. nr % 0 -. rr F -.\} -.el \{\ -. de IX -.. -.\} -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C -.\" ======================================================================== -.\" -.IX Title "REAGENT 1" -.TH REAGENT 1 "2011-08-11" "perl v5.12.3" "Entropy" -.\" For nroff, turn off justification. Always turn off hyphenation; it makes -.\" way too many mistakes in technical documents. -.if n .ad l -.nh -.SH "NAME" -reagent \- Official Sabayon Linux Server\-Side Package Management tool -.SH "SYNOPSIS" -.IX Header "SYNOPSIS" -\&\fBreagent\fR [action] [basic_options] [options] [atom | package_file | \f(CW@set\fR] ... -.PP -\&\fBreagent\fR [action] [basic_options] [options] ... -.PP -\&\fBreagent\fR \-\-help -.PP -\&\fBreagent\fR \-\-version -.SH "DESCRIPTION" -.IX Header "DESCRIPTION" -\&\fBreagent\fR is a server-side repository administration tool used to sync Portage -database with Entropy by phisically creating package files and updating Entropy -repository database. -.SH "BASIC_OPTIONS" -.IX Header "BASIC_OPTIONS" -.IP "\fB\-\-help (\-h)\fR" 4 -.IX Item "--help (-h)" -this output -.IP "\fB\-\-version\fR" 4 -.IX Item "--version" -print version -.IP "\fB\-\-nocolor\fR" 4 -.IX Item "--nocolor" -disable colorized output -.IP "\fB\-\-color\fR" 4 -.IX Item "--color" -force colorized output -.SH "OPTIONS" -.IX Header "OPTIONS" -.IP "\fBstatus\fR" 4 -.IX Item "status" -show current repositories status -.IP "\fBupdate\fR" 4 -.IX Item "update" -scan the System looking for newly compiled packages -.RS 4 -.IP "\fB\-\-seekstore\fR" 4 -.IX Item "--seekstore" -analyze the Entropy Store directory directly -.IP "\fB\-\-repackage " 4 -.IX Item "--repackage " -repackage the specified atoms -.IP "\fB\-\-noask\fR" 4 -.IX Item "--noask" -do not ask anything except critical things -.IP "\fB\-\-atoms " 4 -.IX Item "--atoms " -manage only the specified atoms -.IP "\fB\-\-interactive\fR" 4 -.IX Item "--interactive" -run in interactive mode (asking things one by one) -.RE -.RS 4 -.RE -.IP "\fBinject " 4 -.IX Item "inject " -add binary packages to repository w/o affecting scopes (multipackages) -.IP "\fBquery\fR" 4 -.IX Item "query" -do some searches into repository databases -.RS 4 -.IP "\fBsearch\fR" 4 -.IX Item "search" -search packages inside the default repository database -.IP "\fBmatch\fR" 4 -.IX Item "match" -match package dependency inside the default repository database -.IP "\fBneeded\fR" 4 -.IX Item "needed" -show runtime libraries needed by the provided atoms -.IP "\fBtags\fR" 4 -.IX Item "tags" -show packages owning the specified tags -.IP "\fBsets\fR" 4 -.IX Item "sets" -search available package sets -.IP "\fBfiles\fR" 4 -.IX Item "files" -show files owned by the provided atoms -.IP "\fBbelongs\fR" 4 -.IX Item "belongs" -show from what package the provided files belong -.IP "\fBdescription\fR" 4 -.IX Item "description" -search packages by description -.IP "\fBlist\fR" 4 -.IX Item "list" -list all the packages in the default repository -.IP "\fBgraph\fR" 4 -.IX Item "graph" -show direct depdendencies tree for provided installable atoms -.RS 4 -.IP "\fB\-\-complete\fR" 4 -.IX Item "--complete" -include system packages, build deps and circularity information -.RE -.RS 4 -.RE -.IP "\fBrevgraph\fR" 4 -.IX Item "revgraph" -show reverse depdendencies tree for provided installed atoms -.RS 4 -.IP "\fB\-\-complete\fR" 4 -.IX Item "--complete" -include system packages, build deps and circularity information -.RE -.RS 4 -.RE -.IP "\fB\-\-verbose\fR" 4 -.IX Item "--verbose" -show more details -.IP "\fB\-\-quiet\fR" 4 -.IX Item "--quiet" -print results in a scriptable way -.RE -.RS 4 -.RE -.IP "\fBrepo\fR" 4 -.IX Item "repo" -manage a repository -.RS 4 -.IP "\fBinit\fR" 4 -.IX Item "init" -(re)initialize the current repository -.IP "\fBbump\fR" 4 -.IX Item "bump" -manually force a revision bump for the current repository database -.RS 4 -.IP "\fB\-\-sync\fR" 4 -.IX Item "--sync" -synchronize the database -.RE -.RS 4 -.RE -.IP "\fBflushback [branches]\fR" 4 -.IX Item "flushback [branches]" -flush back old branches packages to current branch -.IP "\fBremove\fR" 4 -.IX Item "remove" -remove the provided atoms from the current repository database -.RS 4 -.IP "\fB\-\-nodeps\fR" 4 -.IX Item "--nodeps" -do not include reverse dependencies -.RE -.RS 4 -.RE -.IP "\fBmultiremove\fR" 4 -.IX Item "multiremove" -remove the provided injected atoms (all if no atom specified) -.IP "\fBcreate-empty-database\fR" 4 -.IX Item "create-empty-database" -create an empty repository database in the provided path -.IP "\fBswitchbranch >" 4 -.IX Item "switchbranch >" -switch to the specified branch the repository -.IP "\fBmd5remote [atoms]\fR" 4 -.IX Item "md5remote [atoms]" -verify remote integrity of the provided atoms -.IP "\fBbackup\fR" 4 -.IX Item "backup" -backup current repository database -.IP "\fBrestore\fR" 4 -.IX Item "restore" -restore a previously backed-up repository database -.IP "\fBenable " 4 -.IX Item "enable " -enable the specified repository -.IP "\fBdisable " 4 -.IX Item "disable " -disable the specified repository -.IP "\fBpackage-dep-check " 4 -.IX Item "package-dep-check " -check packages in repository for missing dependencies -.IP "\fBpackage-dep " 4 -.IX Item "package-dep " -handle packages dependencies -.IP "\fBpackage-tag [atoms]>" 4 -.IX Item "package-tag [atoms]>" -clone a package assigning it an arbitrary tag -.IP "\fBpackage-mask " 4 -.IX Item "package-mask " -mask given package in given repository -.IP "\fBpackage-unmask " 4 -.IX Item "package-unmask " -unmask given package in given repository -.IP "\fBmove [atoms]>" 4 -.IX Item "move [atoms]>" -move packages from a repository to another -.IP "\fBcopy [atoms]>" 4 -.IX Item "copy [atoms]>" -copy packages from a repository to another -.IP "\fBdefault " 4 -.IX Item "default " -set the default repository -.RE -.RS 4 -.RE -.IP "\fBkey\fR" 4 -.IX Item "key" -manage repository digital signatures (OpenGPG) -.RS 4 -.IP "\fBcreate [repos]\fR" 4 -.IX Item "create [repos]" -create keypair for repositories and sign packages -.IP "\fBdelete [repos]\fR" 4 -.IX Item "delete [repos]" -delete keypair (and digital signatures) of repository -.IP "\fBstatus [repos]\fR" 4 -.IX Item "status [repos]" -show currently configured keys information for given repositories -.IP "\fBsign [repos]\fR" 4 -.IX Item "sign [repos]" -sign (or re-sign) packages in repository using currently set keypair -.IP "\fBimport >" 4 -.IX Item "import >" -import keypair, bind to given repository -.IP "\fBexport-public >" 4 -.IX Item "export-public >" -export public key of given repository -.RE -.RS 4 -.RE -.IP "\fBexport-private >" 4 -.IX Item "export-private >" -export private key of given repository -.IP "\fBspm\fR" 4 -.IX Item "spm" -source package manager functions -.RS 4 -.IP "\fBcompile\fR" 4 -.IX Item "compile" -compilation function -.RS 4 -.IP "\fBcategories\fR" 4 -.IX Item "categories" -compile packages belonging to the provided categories -.RS 4 -.IP "\fB\-\-list\fR" 4 -.IX Item "--list" -just list packages -.RE -.RS 4 -.RE -.IP "\fBpkgset\fR" 4 -.IX Item "pkgset" -compile packages in provided package set names -.RS 4 -.IP "\fB\-\-list\fR" 4 -.IX Item "--list" -just list packages -.IP "\fB\-\-rebuild\fR" 4 -.IX Item "--rebuild" -rebuild everything -.IP "\fB\-\-dbupdate\fR" 4 -.IX Item "--dbupdate" -run database update if all went fine -.IP "\fB\-\-dbsync\fR" 4 -.IX Item "--dbsync" -run mirror sync if all went fine -.RE -.RS 4 -.RE -.RE -.RS 4 -.RE -.IP "\fBorphans\fR" 4 -.IX Item "orphans" -scan orphaned packages in \s-1SPM\s0 -.IP "\fBnew [categories]\fR" 4 -.IX Item "new [categories]" -scan new packages available in \s-1SPM\s0 -.RE -.RS 4 -.RE -.IP "\fBdeptest\fR" 4 -.IX Item "deptest" -look for unsatisfied dependencies -.IP "\fBlibtest\fR" 4 -.IX Item "libtest" -look for missing libraries (scan system) -.RS 4 -.IP "\fB\-\-dump\fR" 4 -.IX Item "--dump" -dump results to files -.RE -.RS 4 -.RE -.IP "\fBlinktest [excluded libraries]\fR" 4 -.IX Item "linktest [excluded libraries]" -look for missing libraries (scan repository metadata) -.IP "\fBpkgtest\fR" 4 -.IX Item "pkgtest" -verify the integrity of local package files -.IP "\fBrevdeps\fR" 4 -.IX Item "revdeps" -regenerate reverse dependencies metadata -.IP "\fBlibpaths\fR" 4 -.IX Item "libpaths" -regenerate the library paths table -.IP "\fBcleanup\fR" 4 -.IX Item "cleanup" -remove downloaded packages and clean temp. directories) -.SH "ENVIRONMENT" -.IX Header "ENVIRONMENT" -\&\-\fB\s-1ETP_REPO\s0\fR=valid repository id: on-the-fly switch default Entropy repository. -.SH "BUGS" -.IX Header "BUGS" -Please report bugs to http://bugs.sabayonlinux.org. -.SH "EXIT STATUS" -.IX Header "EXIT STATUS" -\&\fBreagent\fR returns a zero exit status if the called command succeeded. Non zero -is returned in case of failure. -.SH "AUTHOR" -.IX Header "AUTHOR" -Fabio Erculiani -.SH "SEE ALSO" -.IX Header "SEE ALSO" -\&\fIactivator\fR\|(1), \fIequo\fR\|(1) -.SH "POD ERRORS" -.IX Header "POD ERRORS" -Hey! \fBThe above document had some coding errors, which are explained below:\fR -.IP "Around line 312:" 4 -.IX Item "Around line 312:" -\&'=item' outside of any '=over' -.IP "Around line 416:" 4 -.IX Item "Around line 416:" -You forgot a '=back' before '=head1' From 6132921f3bcd74471c832a5a52b9cfe6fc131dfe Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:22:47 +0200 Subject: [PATCH 97/99] [equo] drop "equo community", please use eit now (editing server.conf setting: community-mode = enable) --- client/equo.py | 250 ---------------------- docs/man/equo.pod | 492 ------------------------------------------- docs/man/man1/equo.1 | 363 +------------------------------ 3 files changed, 2 insertions(+), 1103 deletions(-) diff --git a/client/equo.py b/client/equo.py index 8b6197ba2..385faf25c 100644 --- a/client/equo.py +++ b/client/equo.py @@ -261,122 +261,6 @@ help_opts_extended = [ (2, 'backup', 2, _('backup the current Entropy installed packages database')), (2, 'restore', 2, _('restore a previously backed up Entropy installed packages database')), None, - (1, 'community', 1, _('handles community-side features')), - - (2, 'repos', 2, _('community repositories management functions')), - (3, 'update', 3, _('scan the System looking for newly compiled packages')), - (4, '--seekstore', 2, _('analyze the Entropy Store directory directly')), - (4, '--repackage ', 1, _('repackage the specified atoms')), - (4, '--noask', 3, _('do not ask anything except critical things')), - (4, '--atoms ', 2, _('manage only the specified atoms')), - (4, '--interactive', 2, _('run in interactive mode (asking things one by one)')), - (3, 'inject ', 1, _('add binary packages to repository w/o affecting scopes (multipackages)')), - (2, 'mirrors', 2, _('community repositories mirrors management functions')), - (3, 'sync', 3, _('sync packages, database and also do some tidy')), - (4, '--noask', 3, _('do not ask anything except critical things')), - (4, '--syncall', 2, _('sync all the configured repositories')), - (3, 'packages-sync', 2, _('sync packages across primary mirrors')), - (4, '--ask', 3, _('ask before making any changes')), - (4, '--pretend', 2, _('only show what would be done')), - (4, '--syncall', 2, _('sync all the configured repositories')), - (4, '--do-packages-check', 1, _('also verify packages integrity')), - (3, 'repo-sync', 2, _('sync the current repository database across primary mirrors')), - (4, '--syncall', 2, _('sync all the configured repositories')), - (3, 'repo-lock', 2, _('lock the current repository database (server-side)')), - (3, 'repo-unlock', 2, _('unlock the current repository database (server-side)')), - (3, 'repo-download-lock', 1, _('lock the current repository database (client-side)')), - (3, 'repo-download-unlock', 1, _('unlock the current repository database (client-side)')), - (3, 'repo-lock-status', 1, _('show current lock status')), - (3, 'tidy', 3, _('remove binary packages not in repositories and expired')), - (3, 'vacuum', 3, _('clean unavailable packages from mirrors (similar to tidy, but more nazi)')), - (4, '--days=', 2, _('expiration days [default is: 0, dangerous!]')), - - None, - - (2, 'repo', 2, _('manage a repository')), - - (3, '--initialize', 2, _('(re)initialize the current repository database')), - (4, '--empty', 2, _('do not refill database using packages on mirrors')), - (4, '--repo=', 1, _('(re)create the database for the specified repository')), - (3, 'bump', 3, _('manually force a revision bump for the current repository database')), - (4, '--sync', 2, _('synchronize the database')), - (3, 'flushback [branches]', 1, _('flush back old branches packages to current branch')), - (3, 'remove', 3, _('remove the provided atoms from the current repository database')), - (3, 'multiremove', 2, _('remove the provided injected atoms (all if no atom specified)')), - (3, 'create-empty-database', 1, _('create an empty repository database in the provided path')), - (3, 'switchbranch ', 2, _('switch to the specified branch the provided atoms (or world)')), - (3, 'md5remote', 2, _('verify remote integrity of the provided atoms (or world)')), - (3, 'backup', 3, _('backup current repository database')), - (3, 'restore', 3, _('restore a previously backed-up repository database')), - (3, 'spmuids', 3, _('regenerate SPM UIDs map (SPM <-> Entropy packages)'),), - - (3, 'enable ', 2, _('enable the specified repository')), - (3, 'disable ', 2, _('disable the specified repository')), - (3, 'status ', 2, _('show the current Server Interface status')), - (3, 'package-dep-check [atoms]', 1, _('check packages in repository for missing dependencies')), - (3, 'package-dep [atoms]', 1, _('handle packages dependencies')), - (3, 'package-tag [atoms]', 1, _('clone a package inside a repository assigning it an arbitrary tag')), - (3, 'move [atoms]', 1, _('move packages from a repository to another')), - (4, '--deps', 2, _('pulls dependencies in')), - (3, 'copy [atoms]', 1, _('copy packages from a repository to another')), - (4, '--deps', 2, _('pulls dependencies in')), - (3, 'default ', 2, _('set the default repository')), - - None, - - (2, 'key', 2, _('manage repository digital signatures (OpenGPG)')), - (3, 'create [repos]', 2, _('create keypair for repositories and sign packages')), - (3, 'delete [repos]', 2, _('delete keypair (and digital signatures) of repository')), - (3, 'status [repos]', 2, _('show currently configured keys information for given repositories')), - (3, 'sign [repos]', 2, _('sign (or re-sign) packages in repository using currently set keypair')), - (3, 'import ', 1, _('import keypair, bind to given repository')), - (3, 'export-public ', 1, _('export public key of given repository')), - (3, 'export-private ', 1, _('export private key of given repository')), - - None, - - (2, 'query', 2, _('do some searches into community repository databases')), - (3, 'belongs', 2, _('show from what package the provided files belong')), - (3, 'changelog', 1, _('show packages changelog')), - (3, 'revdeps', 2, _('show what packages depend on the provided atoms')), - (3, 'description', 1, _('search packages by description')), - (3, 'files', 2, _('show files owned by the provided atoms')), - (3, 'list', 2, _('list all the packages in the default repository')), - (3, 'needed', 2, _('show runtime libraries needed by the provided atoms')), - (3, 'search', 2, _('search packages inside the default repository database')), - (3, 'sets', 2, _('search available package sets')), - (3, 'tags', 2, _('show packages owning the specified tags')), - (3, 'revisions', 1, _('show installed packages owning the specified revisions')), - (3, '--verbose', 1, _('show more details')), - (3, '--quiet', 2, _('print results in a scriptable way')), - - None, - - (2, 'spm', 2, _('source package manager functions')), - (3, 'compile', 2, _('compilation function')), - (4, 'categories', 2, _('compile packages belonging to the provided categories')), - (5, '--list', 2, _('just list packages')), - (5, '--nooldslots', 1, _('do not pull old package slots')), - (4, 'pkgset', 3, _('compile packages in provided package set names')), - (5, '--list', 2, _('just list packages')), - (5, '--rebuild', 1, _('rebuild everything')), - (5, '--dbupdate', 1, _('run database update if all went fine')), - (5, '--dbsync', 1, _('run mirror sync if all went fine')), - (3, 'orphans', 2, _('scan orphaned packages on SPM')), - - None, - - (2, 'notice', 2, _('notice board handling functions')), - (3, 'add', 2, _('add a news item to the notice board')), - (3, 'remove', 2, _('remove a news item from the notice board')), - (3, 'read', 2, _('read the current notice board')), - - None, - - (2, 'deptest', 2, _('look for unsatisfied dependencies across community repositories')), - (2, 'pkgtest', 2, _('verify the integrity of local package files')), - - None, (1, 'ugc', 2, _('handles User Generated Content features')), (2, 'login ', 1, _('login against a specified repository')), (2, 'logout ', 1, _('logout from a specified repository')), @@ -462,139 +346,6 @@ def _do_text_ugc(main_cmd, options): import text_ugc return text_ugc.ugc(options) -def _do_text_community(main_cmd, options): - _warn_live_system() - comm_err_msg = _("You need to install sys-apps/entropy-server. :-) Do it !") - etpConst['community']['mode'] = True - - if not options: - return -10 - - rc = -10 - sub_cmd = options.pop(0) - - if sub_cmd == "repos": - try: - import server_reagent - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - if options: - if options[0] == "update": - rc = server_reagent.update(options[1:]) - server_reagent.get_entropy_server().close_repositories() - elif options[0] == "inject": - rc = server_reagent.inject(options[1:]) - server_reagent.get_entropy_server().close_repositories() - elif sub_cmd == "mirrors": - try: - import server_activator - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - if options: - if options[0] == "sync": - rc = server_activator.sync(options[1:]) - elif options[0] == "packages-sync": - rc = server_activator.sync(options[1:]) - elif options[0] == "tidy": - rc = server_activator.sync(options[1:], just_tidy = True) - elif options[0].startswith("repo-"): - options[0] = options[0][5:] - rc = server_activator.repo(options) - elif options[0] == "vacuum": - rc = server_activator.repo(options) - - elif sub_cmd == "repo": - - do = True - # hook to support spmuids command, which is just - # a duplicate of 'equo database counters' - # put here for completeness - if options: - if options[0] == "spmuids": - do = False - import text_rescue - rc = text_rescue.database(options) - - if do: - try: - import server_reagent - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - rc = server_reagent.repositories(options) - server_reagent.get_entropy_server().close_repositories() - - elif sub_cmd == "key": - try: - import server_key - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - rc = server_key.key(options) - - elif sub_cmd == "notice": - try: - import server_activator - if not hasattr(server_activator, 'notice'): - raise ImportError - except ImportError: - print_error(darkgreen(_("You need to install/update sys-apps/entropy-server. :-) Do it !"))) - rc = 1 - else: - rc = server_activator.notice(options) - - elif sub_cmd == "query": - try: - import server_query - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - rc = server_query.query(options) - - elif sub_cmd == "spm": - try: - import server_reagent - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - rc = server_reagent.spm(options) - server_reagent.get_entropy_server().close_repositories() - - elif sub_cmd == "deptest": - try: - import server_reagent - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - server = server_reagent.get_entropy_server() - server.dependencies_test(server.repository()) - server.close_repositories() - rc = 0 - - elif sub_cmd == "pkgtest": - try: - import server_reagent - except ImportError: - print_error(darkgreen(comm_err_msg)) - rc = 1 - else: - server = server_reagent.get_entropy_server() - server._verify_local_packages(server.repository(), - [], ask = etpUi['ask']) - server.close_repositories() - rc = 0 - - return rc - def _do_text_cleanup(main_cmd, options): if not entropy.tools.is_root(): @@ -695,7 +446,6 @@ CMDS_MAP = { "database": _do_text_rescue, "rescue": _do_text_rescue, "ugc": _do_text_ugc, - "community": _do_text_community, "cleanup": _do_text_cleanup, diff --git a/docs/man/equo.pod b/docs/man/equo.pod index b9a703207..2d60f3279 100644 --- a/docs/man/equo.pod +++ b/docs/man/equo.pod @@ -915,498 +915,6 @@ backup the current Entropy installed packages database restore a previously backed up Entropy installed packages database -=back - -=item [1] B - -handles community-side features - - -=over - -=item [2] B - -community repositories management functions - - -=over - -=item [3] B - -scan the System looking for newly compiled packages - - -=over - -=item [4] B<--seekstore> - -analyze the Entropy Store directory directly - -=item [4] B<--repackage EatomsE> - -repackage the specified atoms - -=item [4] B<--noask> - -do not ask anything except critical things - -=item [4] B<--atoms EatomsE> - -manage only the specified atoms - -=item [4] B<--interactive> - -run in interactive mode (asking things one by one) - - -=back - -=item [3] BpackagesE> - -add binary packages to repository w/o affecting scopes (multipackages) - - -=back - -=item [2] B - -community repositories mirrors management functions - - -=over - -=item [3] B - -sync packages, database and also do some tidy - - -=over - -=item [4] B<--noask> - -do not ask anything except critical things - -=item [4] B<--syncall> - -sync all the configured repositories - - -=back - -=item [3] B - -sync packages across primary mirrors - - -=over - -=item [4] B<--ask> - -ask before making any changes - -=item [4] B<--pretend> - -only show what would be done - -=item [4] B<--syncall> - -sync all the configured repositories - -=item [4] B<--do-packages-check> - -also verify packages integrity - - -=back - -=item [3] B - -sync the current repository database across primary mirrors - - -=over - -=item [4] B<--syncall> - -sync all the configured repositories - - -=back - -=item [3] B - -lock the current repository database (server-side) - -=item [3] B - -unlock the current repository database (server-side) - -=item [3] B - -lock the current repository database (client-side) - -=item [3] B - -unlock the current repository database (client-side) - -=item [3] B - -show current lock status - -=item [3] B - -remove binary packages not in repositories and expired - -=item [3] B - -clean unavailable packages from mirrors (similar to tidy, but more nazi) - - -=over - -=item [4] B<--days=EdaysE> - -expiration days [default is: 0, dangerous!] - - -=back - - -=back - -=item [2] B - -manage a repository - - -=over - -=item [3] B<--initialize> - -(re)initialize the current repository database - - -=over - -=item [4] B<--empty> - -do not refill database using packages on mirrors - -=item [4] B<--repo=ErepoE> - -(re)create the database for the specified repository - - -=back - -=item [3] B - -manually force a revision bump for the current repository database - - -=over - -=item [4] B<--sync> - -synchronize the database - - -=back - -=item [3] B - -flush back old branches packages to current branch - -=item [3] B - -remove the provided atoms from the current repository database - -=item [3] B - -remove the provided injected atoms (all if no atom specified) - -=item [3] B - -create an empty repository database in the provided path - -=item [3] Bfrom branchE Eto branchE> - -switch to the specified branch the provided atoms (or world) - -=item [3] B - -verify remote integrity of the provided atoms (or world) - -=item [3] B - -backup current repository database - -=item [3] B - -restore a previously backed-up repository database - -=item [3] B - -regenerate SPM UIDs map (SPM E-E Entropy packages) - -=item [3] BrepoE> - -enable the specified repository - -=item [3] BrepoE> - -disable the specified repository - -=item [3] BrepoE> - -show the current Server Interface status - -=item [3] BrepoE [atoms]> - -check packages in repository for missing dependencies - -=item [3] BrepoE [atoms]> - -handle packages dependencies - -=item [3] BrepoE Etag-stringE [atoms]> - -clone a package inside a repository assigning it an arbitrary tag - -=item [3] BfromE EtoE [atoms]> - -move packages from a repository to another - - -=over - -=item [4] B<--deps> - -pulls dependencies in - - -=back - -=item [3] BfromE EtoE [atoms]> - -copy packages from a repository to another - - -=over - -=item [4] B<--deps> - -pulls dependencies in - - -=back - -=item [3] Brepo_idE> - -set the default repository - - -=back - -=item [2] B - -manage repository digital signatures (OpenGPG) - - -=over - -=item [3] B - -create keypair for repositories and sign packages - -=item [3] B - -delete keypair (and digital signatures) of repository - -=item [3] B - -show currently configured keys information for given repositories - -=item [3] B - -sign (or re-sign) packages in repository using currently set keypair - -=item [3] Brepo_idE Eprivkey_pathE Epubkey_pathE> - -import keypair, bind to given repository - -=item [3] Brepo_idE Ekey_pathE> - -export public key of given repository - -=item [3] Brepo_idE Ekey_pathE> - -export private key of given repository - - -=back - -=item [2] B - -do some searches into community repository databases - - -=over - -=item [3] B - -show from what package the provided files belong - -=item [3] B - -show packages changelog - -=item [3] B - -show what packages depend on the provided atoms - -=item [3] B - -search packages by description - -=item [3] B - -show files owned by the provided atoms - -=item [3] B - -list all the packages in the default repository - -=item [3] B - -show runtime libraries needed by the provided atoms - -=item [3] B - -search packages inside the default repository database - -=item [3] B - -search available package sets - -=item [3] B - -show packages owning the specified tags - -=item [3] B - -show installed packages owning the specified revisions - -=item [3] B<--verbose> - -show more details - -=item [3] B<--quiet> - -print results in a scriptable way - - -=back - -=item [2] B - -source package manager functions - - -=over - -=item [3] B - -compilation function - - -=over - -=item [4] B - -compile packages belonging to the provided categories - - -=over - -=item [5] B<--list> - -just list packages - -=item [5] B<--nooldslots> - -do not pull old package slots - - -=back - -=item [4] B - -compile packages in provided package set names - - -=over - -=item [5] B<--list> - -just list packages - -=item [5] B<--rebuild> - -rebuild everything - -=item [5] B<--dbupdate> - -run database update if all went fine - -=item [5] B<--dbsync> - -run mirror sync if all went fine - - -=back - - -=back - -=item [3] B - -scan orphaned packages on SPM - - -=back - -=item [2] B - -notice board handling functions - - -=over - -=item [3] B - -add a news item to the notice board - -=item [3] B - -remove a news item from the notice board - -=item [3] B - -read the current notice board - - -=back - -=item [2] B - -look for unsatisfied dependencies across community repositories - -=item [2] B - -verify the integrity of local package files - - =back =item [1] B diff --git a/docs/man/man1/equo.1 b/docs/man/man1/equo.1 index 5e7daccfe..cc1a877c9 100644 --- a/docs/man/man1/equo.1 +++ b/docs/man/man1/equo.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.23 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.23 (Pod::Simple 3.14) .\" .\" Standard preamble: .\" ======================================================================== @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "EQUO 1" -.TH EQUO 1 "2011-08-20" "perl v5.12.3" "Entropy" +.TH EQUO 1 "2011-10-17" "perl v5.12.3" "Entropy" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -797,365 +797,6 @@ restore a previously backed up Entropy installed packages database .RE .RS 4 .RE -.IP "[1] \fBcommunity\fR" 4 -.IX Item "[1] community" -handles community-side features -.RS 4 -.IP "[2] \fBrepos\fR" 4 -.IX Item "[2] repos" -community repositories management functions -.RS 4 -.IP "[3] \fBupdate\fR" 4 -.IX Item "[3] update" -scan the System looking for newly compiled packages -.RS 4 -.IP "[4] \fB\-\-seekstore\fR" 4 -.IX Item "[4] --seekstore" -analyze the Entropy Store directory directly -.IP "[4] \fB\-\-repackage \fR" 4 -.IX Item "[4] --repackage " -repackage the specified atoms -.IP "[4] \fB\-\-noask\fR" 4 -.IX Item "[4] --noask" -do not ask anything except critical things -.IP "[4] \fB\-\-atoms \fR" 4 -.IX Item "[4] --atoms " -manage only the specified atoms -.IP "[4] \fB\-\-interactive\fR" 4 -.IX Item "[4] --interactive" -run in interactive mode (asking things one by one) -.RE -.RS 4 -.RE -.IP "[3] \fBinject \fR" 4 -.IX Item "[3] inject " -add binary packages to repository w/o affecting scopes (multipackages) -.RE -.RS 4 -.RE -.IP "[2] \fBmirrors\fR" 4 -.IX Item "[2] mirrors" -community repositories mirrors management functions -.RS 4 -.IP "[3] \fBsync\fR" 4 -.IX Item "[3] sync" -sync packages, database and also do some tidy -.RS 4 -.IP "[4] \fB\-\-noask\fR" 4 -.IX Item "[4] --noask" -do not ask anything except critical things -.IP "[4] \fB\-\-syncall\fR" 4 -.IX Item "[4] --syncall" -sync all the configured repositories -.RE -.RS 4 -.RE -.IP "[3] \fBpackages-sync\fR" 4 -.IX Item "[3] packages-sync" -sync packages across primary mirrors -.RS 4 -.IP "[4] \fB\-\-ask\fR" 4 -.IX Item "[4] --ask" -ask before making any changes -.IP "[4] \fB\-\-pretend\fR" 4 -.IX Item "[4] --pretend" -only show what would be done -.IP "[4] \fB\-\-syncall\fR" 4 -.IX Item "[4] --syncall" -sync all the configured repositories -.IP "[4] \fB\-\-do\-packages\-check\fR" 4 -.IX Item "[4] --do-packages-check" -also verify packages integrity -.RE -.RS 4 -.RE -.IP "[3] \fBrepo-sync\fR" 4 -.IX Item "[3] repo-sync" -sync the current repository database across primary mirrors -.RS 4 -.IP "[4] \fB\-\-syncall\fR" 4 -.IX Item "[4] --syncall" -sync all the configured repositories -.RE -.RS 4 -.RE -.IP "[3] \fBrepo-lock\fR" 4 -.IX Item "[3] repo-lock" -lock the current repository database (server-side) -.IP "[3] \fBrepo-unlock\fR" 4 -.IX Item "[3] repo-unlock" -unlock the current repository database (server-side) -.IP "[3] \fBrepo-download-lock\fR" 4 -.IX Item "[3] repo-download-lock" -lock the current repository database (client-side) -.IP "[3] \fBrepo-download-unlock\fR" 4 -.IX Item "[3] repo-download-unlock" -unlock the current repository database (client-side) -.IP "[3] \fBrepo-lock-status\fR" 4 -.IX Item "[3] repo-lock-status" -show current lock status -.IP "[3] \fBtidy\fR" 4 -.IX Item "[3] tidy" -remove binary packages not in repositories and expired -.IP "[3] \fBvacuum\fR" 4 -.IX Item "[3] vacuum" -clean unavailable packages from mirrors (similar to tidy, but more nazi) -.RS 4 -.IP "[4] \fB\-\-days=\fR" 4 -.IX Item "[4] --days=" -expiration days [default is: 0, dangerous!] -.RE -.RS 4 -.RE -.RE -.RS 4 -.RE -.IP "[2] \fBrepo\fR" 4 -.IX Item "[2] repo" -manage a repository -.RS 4 -.IP "[3] \fB\-\-initialize\fR" 4 -.IX Item "[3] --initialize" -(re)initialize the current repository database -.RS 4 -.IP "[4] \fB\-\-empty\fR" 4 -.IX Item "[4] --empty" -do not refill database using packages on mirrors -.IP "[4] \fB\-\-repo=\fR" 4 -.IX Item "[4] --repo=" -(re)create the database for the specified repository -.RE -.RS 4 -.RE -.IP "[3] \fBbump\fR" 4 -.IX Item "[3] bump" -manually force a revision bump for the current repository database -.RS 4 -.IP "[4] \fB\-\-sync\fR" 4 -.IX Item "[4] --sync" -synchronize the database -.RE -.RS 4 -.RE -.IP "[3] \fBflushback [branches]\fR" 4 -.IX Item "[3] flushback [branches]" -flush back old branches packages to current branch -.IP "[3] \fBremove\fR" 4 -.IX Item "[3] remove" -remove the provided atoms from the current repository database -.IP "[3] \fBmultiremove\fR" 4 -.IX Item "[3] multiremove" -remove the provided injected atoms (all if no atom specified) -.IP "[3] \fBcreate-empty-database\fR" 4 -.IX Item "[3] create-empty-database" -create an empty repository database in the provided path -.IP "[3] \fBswitchbranch \fR" 4 -.IX Item "[3] switchbranch " -switch to the specified branch the provided atoms (or world) -.IP "[3] \fBmd5remote\fR" 4 -.IX Item "[3] md5remote" -verify remote integrity of the provided atoms (or world) -.IP "[3] \fBbackup\fR" 4 -.IX Item "[3] backup" -backup current repository database -.IP "[3] \fBrestore\fR" 4 -.IX Item "[3] restore" -restore a previously backed-up repository database -.IP "[3] \fBspmuids\fR" 4 -.IX Item "[3] spmuids" -regenerate \s-1SPM\s0 UIDs map (\s-1SPM\s0 <\-> Entropy packages) -.IP "[3] \fBenable \fR" 4 -.IX Item "[3] enable " -enable the specified repository -.IP "[3] \fBdisable \fR" 4 -.IX Item "[3] disable " -disable the specified repository -.IP "[3] \fBstatus \fR" 4 -.IX Item "[3] status " -show the current Server Interface status -.IP "[3] \fBpackage-dep-check [atoms]\fR" 4 -.IX Item "[3] package-dep-check [atoms]" -check packages in repository for missing dependencies -.IP "[3] \fBpackage-dep [atoms]\fR" 4 -.IX Item "[3] package-dep [atoms]" -handle packages dependencies -.IP "[3] \fBpackage-tag [atoms]\fR" 4 -.IX Item "[3] package-tag [atoms]" -clone a package inside a repository assigning it an arbitrary tag -.IP "[3] \fBmove [atoms]\fR" 4 -.IX Item "[3] move [atoms]" -move packages from a repository to another -.RS 4 -.IP "[4] \fB\-\-deps\fR" 4 -.IX Item "[4] --deps" -pulls dependencies in -.RE -.RS 4 -.RE -.IP "[3] \fBcopy [atoms]\fR" 4 -.IX Item "[3] copy [atoms]" -copy packages from a repository to another -.RS 4 -.IP "[4] \fB\-\-deps\fR" 4 -.IX Item "[4] --deps" -pulls dependencies in -.RE -.RS 4 -.RE -.IP "[3] \fBdefault \fR" 4 -.IX Item "[3] default " -set the default repository -.RE -.RS 4 -.RE -.IP "[2] \fBkey\fR" 4 -.IX Item "[2] key" -manage repository digital signatures (OpenGPG) -.RS 4 -.IP "[3] \fBcreate [repos]\fR" 4 -.IX Item "[3] create [repos]" -create keypair for repositories and sign packages -.IP "[3] \fBdelete [repos]\fR" 4 -.IX Item "[3] delete [repos]" -delete keypair (and digital signatures) of repository -.IP "[3] \fBstatus [repos]\fR" 4 -.IX Item "[3] status [repos]" -show currently configured keys information for given repositories -.IP "[3] \fBsign [repos]\fR" 4 -.IX Item "[3] sign [repos]" -sign (or re-sign) packages in repository using currently set keypair -.IP "[3] \fBimport \fR" 4 -.IX Item "[3] import " -import keypair, bind to given repository -.IP "[3] \fBexport-public \fR" 4 -.IX Item "[3] export-public " -export public key of given repository -.IP "[3] \fBexport-private \fR" 4 -.IX Item "[3] export-private " -export private key of given repository -.RE -.RS 4 -.RE -.IP "[2] \fBquery\fR" 4 -.IX Item "[2] query" -do some searches into community repository databases -.RS 4 -.IP "[3] \fBbelongs\fR" 4 -.IX Item "[3] belongs" -show from what package the provided files belong -.IP "[3] \fBchangelog\fR" 4 -.IX Item "[3] changelog" -show packages changelog -.IP "[3] \fBrevdeps\fR" 4 -.IX Item "[3] revdeps" -show what packages depend on the provided atoms -.IP "[3] \fBdescription\fR" 4 -.IX Item "[3] description" -search packages by description -.IP "[3] \fBfiles\fR" 4 -.IX Item "[3] files" -show files owned by the provided atoms -.IP "[3] \fBlist\fR" 4 -.IX Item "[3] list" -list all the packages in the default repository -.IP "[3] \fBneeded\fR" 4 -.IX Item "[3] needed" -show runtime libraries needed by the provided atoms -.IP "[3] \fBsearch\fR" 4 -.IX Item "[3] search" -search packages inside the default repository database -.IP "[3] \fBsets\fR" 4 -.IX Item "[3] sets" -search available package sets -.IP "[3] \fBtags\fR" 4 -.IX Item "[3] tags" -show packages owning the specified tags -.IP "[3] \fBrevisions\fR" 4 -.IX Item "[3] revisions" -show installed packages owning the specified revisions -.IP "[3] \fB\-\-verbose\fR" 4 -.IX Item "[3] --verbose" -show more details -.IP "[3] \fB\-\-quiet\fR" 4 -.IX Item "[3] --quiet" -print results in a scriptable way -.RE -.RS 4 -.RE -.IP "[2] \fBspm\fR" 4 -.IX Item "[2] spm" -source package manager functions -.RS 4 -.IP "[3] \fBcompile\fR" 4 -.IX Item "[3] compile" -compilation function -.RS 4 -.IP "[4] \fBcategories\fR" 4 -.IX Item "[4] categories" -compile packages belonging to the provided categories -.RS 4 -.IP "[5] \fB\-\-list\fR" 4 -.IX Item "[5] --list" -just list packages -.IP "[5] \fB\-\-nooldslots\fR" 4 -.IX Item "[5] --nooldslots" -do not pull old package slots -.RE -.RS 4 -.RE -.IP "[4] \fBpkgset\fR" 4 -.IX Item "[4] pkgset" -compile packages in provided package set names -.RS 4 -.IP "[5] \fB\-\-list\fR" 4 -.IX Item "[5] --list" -just list packages -.IP "[5] \fB\-\-rebuild\fR" 4 -.IX Item "[5] --rebuild" -rebuild everything -.IP "[5] \fB\-\-dbupdate\fR" 4 -.IX Item "[5] --dbupdate" -run database update if all went fine -.IP "[5] \fB\-\-dbsync\fR" 4 -.IX Item "[5] --dbsync" -run mirror sync if all went fine -.RE -.RS 4 -.RE -.RE -.RS 4 -.RE -.IP "[3] \fBorphans\fR" 4 -.IX Item "[3] orphans" -scan orphaned packages on \s-1SPM\s0 -.RE -.RS 4 -.RE -.IP "[2] \fBnotice\fR" 4 -.IX Item "[2] notice" -notice board handling functions -.RS 4 -.IP "[3] \fBadd\fR" 4 -.IX Item "[3] add" -add a news item to the notice board -.IP "[3] \fBremove\fR" 4 -.IX Item "[3] remove" -remove a news item from the notice board -.IP "[3] \fBread\fR" 4 -.IX Item "[3] read" -read the current notice board -.RE -.RS 4 -.RE -.IP "[2] \fBdeptest\fR" 4 -.IX Item "[2] deptest" -look for unsatisfied dependencies across community repositories -.IP "[2] \fBpkgtest\fR" 4 -.IX Item "[2] pkgtest" -verify the integrity of local package files -.RE -.RS 4 -.RE .IP "[1] \fBugc\fR" 4 .IX Item "[1] ugc" handles User Generated Content features From fd49f5be6e0b5bfd5d5ef9db3a9b12f54e8d5f98 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:23:53 +0200 Subject: [PATCH 98/99] [Makefile] drop man pages installation for reagent, activator --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index 433fc2563..524018376 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,6 @@ entropy-server-install: mkdir -p $(DESTDIR)/etc/entropy mkdir -p $(DESTDIR)$(PREFIX)/sbin mkdir -p $(DESTDIR)$(BINDIR) - mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 conf/server.conf.example $(DESTDIR)/etc/entropy/ @@ -63,10 +62,6 @@ entropy-server-install: mv $(DESTDIR)/$(LIBDIR)/entropy/server/eit.py $(DESTDIR)$(BINDIR)/eit install -m 755 services/matter $(DESTDIR)$(PREFIX)/sbin - # copy man pages - install -m 644 docs/man/man1/reagent.1 $(DESTDIR)$(PREFIX)/share/man/man1/ - install -m 644 docs/man/man1/activator.1 $(DESTDIR)$(PREFIX)/share/man/man1/ - equo-install: mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/client From 08c49210823011340c68340ee360085822ba1e24 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 17 Oct 2011 11:25:20 +0200 Subject: [PATCH 99/99] [po] update translations --- misc/po/POTFILES.in | 37 +- misc/po/ca.po | 3606 +++++++++++++++++++++++------------------ misc/po/da.po | 3650 ++++++++++++++++++++++-------------------- misc/po/de.po | 3642 +++++++++++++++++++++++------------------- misc/po/entropy.pot | 2826 ++++++++++++++++---------------- misc/po/es.po | 3695 +++++++++++++++++++++++------------------- misc/po/fr.po | 3651 +++++++++++++++++++++++------------------- misc/po/fr_CA.po | 3641 +++++++++++++++++++++++------------------- misc/po/it.po | 3603 ++++++++++++++++++++++------------------- misc/po/nl.po | 3646 +++++++++++++++++++++++------------------- misc/po/pl.po | 3528 ++++++++++++++++++++++------------------ misc/po/pt.po | 3718 ++++++++++++++++++++++++------------------- misc/po/ru.po | 3630 +++++++++++++++++++++++------------------- misc/po/sk.po | 3184 ++++++++++++++++++------------------ misc/po/sv.po | 3101 ++++++++++++++++++------------------ misc/po/uk.po | 3627 ++++++++++++++++++++++------------------- 16 files changed, 28520 insertions(+), 24265 deletions(-) diff --git a/misc/po/POTFILES.in b/misc/po/POTFILES.in index ffb9e153e..ac322454d 100644 --- a/misc/po/POTFILES.in +++ b/misc/po/POTFILES.in @@ -75,21 +75,46 @@ ../client/text_rescue.py ../client/equo.py ../client/text_ui.py -../server/reagent.py -../server/server_activator.py -../server/activator.py -../server/server_key.py ../server/eit.py -../server/server_reagent.py -../server/server_query.py ../server/eit/__init__.py +../server/eit/colorful.py ../server/eit/main.py +../server/eit/commands/test.py +../server/eit/commands/query.py ../server/eit/commands/status.py +../server/eit/commands/list.py +../server/eit/commands/own.py +../server/eit/commands/init.py +../server/eit/commands/mv.py +../server/eit/commands/search.py ../server/eit/commands/command.py +../server/eit/commands/reset.py +../server/eit/commands/checkout.py ../server/eit/commands/help.py +../server/eit/commands/bump.py +../server/eit/commands/push.py +../server/eit/commands/notice.py +../server/eit/commands/merge.py ../server/eit/commands/__init__.py +../server/eit/commands/repack.py ../server/eit/commands/commit.py +../server/eit/commands/log.py +../server/eit/commands/match.py +../server/eit/commands/add.py +../server/eit/commands/lock.py +../server/eit/commands/revgraph.py +../server/eit/commands/cleanup.py +../server/eit/commands/vacuum.py +../server/eit/commands/files.py ../server/eit/commands/descriptor.py +../server/eit/commands/remove.py +../server/eit/commands/deps.py +../server/eit/commands/cp.py +../server/eit/commands/graph.py +../server/eit/commands/key.py +../server/eit/commands/inject.py +../server/eit/commands/branch.py +../server/eit/commands/repo.py ../sulfur/src/sulfur_client.py ../sulfur/src/sulfur/views.py ../sulfur/src/sulfur/packages.py diff --git a/misc/po/ca.po b/misc/po/ca.po index bba9485d7..df54d049f 100644 --- a/misc/po/ca.po +++ b/misc/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-02-27 20:35+0100\n" "Last-Translator: Roger Calvó \n" "Language-Team: Catalan \n" @@ -18,36 +18,36 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "S'està sincronitzant la base de dades actual" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espereu" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "S'està eliminant l'entrada" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "S'està afegint l'entrada" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "S'està exportant la taula de la base de dades" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "L'exportació de la base de dades ha acabat." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,20 +56,20 @@ msgstr "L'exportació de la base de dades ha acabat." msgid "ATTENTION" msgstr "ATENCIÓ" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "Hi ha hagut un error Spm" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "No s'ha trobat un Identificador Únic Spm per a " -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "" "s'està actualitzant la disposició de metadades del repositori, espereu!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "s'estan generant les metadades de provided_libs, espereu!" @@ -245,16 +245,16 @@ msgstr "S'estan carregant de nou mòduls de Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "error" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "no s'ha trobat" @@ -303,7 +303,7 @@ msgstr "No es pot executar la fase SPM per" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "No es pot actualitzar el fitxer SPM de paquets instal·lats" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -399,7 +399,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "no existeix" @@ -439,7 +439,7 @@ msgid "Error calculating dependencies" msgstr "Error en calcular les dependències" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "no està implementada" @@ -501,460 +501,460 @@ msgstr "s'està connectant amb la rèplica" msgid "setting directory to" msgstr "s'estableix el directori en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "S'ha carregat la Interfície del Servidor de Rèpliques d'Entropy" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "rèplica de repositori" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "rèplica de paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "s'està cercant un fitxer a la rèplica" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "s'està desbloquejant" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "s'està bloquejant" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "rèplica" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "la rèplica ja està bloquejada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "la rèplica ja està desbloquejada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "rèplica per baixar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "la rèplica ja està bloquejada per baixar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "la rèplica ja està desbloquejada per baixar" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "per baixar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "la rèplica s'ha bloquejat correctament" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "la rèplica no està bloquejada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "la rèplica s'ha desbloquejat correctament" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "error de desbloqueig" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "la rèplica no està desbloquejada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "s'està connectant amb el paquet a baixar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "s'està baixant el paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "no està llistat al repositori!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "s'està comprovant la suma de verificació del paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "s'ha baixat correctament" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "la suma de verificació no coincideix. S'està tornant a baixar..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "sembla trencat. Considereu reempaquetar-lo. S'abandona!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "no hi ha un fitxer de revisió del repositori vàlid a la rèplica" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "no es pot baixar el fitxer de revisió del repositori " -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "la rèplica no té un fitxer de revisió de base de dades vàlid" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "2 minuts d'espera abans d'abandonar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "s'ha desbloquejat la rèplica" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Estadístiques locals" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "directori de càrrega" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "fitxers preparats" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "directori de paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "càrrega" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "baixada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "elimina" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Paquets a eliminar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Paquets a desplaçar localment" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Paquets a carregar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Mida total d'eliminació" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Mida total de càrrega" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Mida total de baixada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Estadístiques remotes per" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "paquets remots" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "fitxers desats" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "S'estan calculant les cues" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "s'està eliminat el paquet i l'empremta electrònica" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "sincronitza" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "l'eliminació ha acabat" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "s'està copiant el fitxer i l'empremta electrònica al repositori" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "errors de càrrega" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "raó" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "s'ha penjat correctament" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "errors de baixada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "la baixada s'ha acabat correctament" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA està comprovant del paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "fitxer de paquet erroni, arregleu-ho" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "s'està iniciant la sincronització de paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "sincronització de paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "error en el sòcol" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "no s'està processant res a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "S'estan expandint les cues" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "no hi ha res a sincronitzar per" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Voleu executar els passos descrits més amunt?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "interrupció de teclat!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "els heu d'empaquetar de nou" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "s'ha capturat una excepció" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "almenys una rèplica s'ha sincronitzat correctament!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "neteja" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "s'estan recollint paquets que han vençut" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "s'estan recollint paquets que han vençut a les branques seleccionades" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "no hi ha res a eliminar en aquesta branca" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "aquests són els paquets que han vençut" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Voleu continuar?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "s'estan eliminant paquets de forma remota" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "errors d'eliminació" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "s'estan eliminat els paquets localment" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "eliminat" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "s'està baixant el tauler de notícies de les rèpliques a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "el tauler de notícies s'ha baixat correctament des de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "s'està eliminant el tauler de notícies de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "l'eliminació del tauler de noticies ha fallat a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "el tauler de notícies s'ha eliminat" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "s'està carregant el tauler de notícies de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "la càrrega del tauler de noticies ha fallat a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "el tauler de notícies s'ha carregat" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "Les claus del repositori han vençut" @@ -967,8 +967,8 @@ msgid "download path" msgstr "camí de baixada" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "errors" @@ -976,262 +976,274 @@ msgstr "errors" msgid "failed to download from mirror" msgstr "ha fallat en baixar de la rèplica" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "No es pot empaquetar" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Hi ha problemes amb treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "S'estan suprimint dades antigues" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "conjunts de paquets configurats" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "No n'hi ha cap de configurat" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "" "s'està creant el bolcat del repositori comprimit i la suma de verificació" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "camí del repositori" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "bolcat lleuger" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "bolcat lleuger de la suma de verificació" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "obridor" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "repositori comprimit i suma de verificació" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "camí del repositori comprimit" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "suma de verificació del repositori" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "suma de verificació comprimida" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "s'està preparant el repositori no comprimit per la càrrega" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "EAPI desactivat" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "s'està preparant per penjar el repositori a la rèplica" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "la càrrega ha fallat, es bloqueja i es continua" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "el repositori ja està sincronitzat" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "ha fallat la sincronització del repositori" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problemes de baixada" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "no es permet la sincronització del repositori" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "conjunts de paquets perduts" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 msgid "dependencies test reported errors" msgstr "el test de dependències informa d'errors" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 msgid "these packages haven't been removed yet" msgstr "aquests paquets encara no s'han eliminat" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problemes de càrrega" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "el repositori s'ha sincronitzat correctament" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "les rèpliques no s'han desbloquejat. Sincronitzeu-les." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "no es poden desar actualitzacions RSS de memòria de cau" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJECTA" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "s'ha injectat" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "quickpkg manualment per actualitzar la base de dades incrustada" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "El repositori s'ha actualitzat igualment" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "el paquet no té assignada keyword, s'emmascararà !" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "el repositori no està configurat" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "la id del repositori està protegida, no podeu usar-la..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "la revisió del repositori no és vàlida" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "s'estableix per defecte a 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repositori" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "s'estan sincronitzant els conjunts de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "no pot coincidir" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 msgid "initializing repository" msgstr "S'està inicialitzant el repositori" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "segur que voleu inicialitzar aquest respositori?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "L'etiqueta especificada no és vàlida" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "s'estan eliminant els paquets seleccionats de les branques" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "no hi ha res per fer" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "aquests són els paquets que s'eliminaran" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "s'està comprovant l'empremta electrònica del paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "l'empremta no coincideix per" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "md5 és incorrecte" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "error en baixar els paquets de les rèpliques" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "s'està treballant en la branca" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "s'està actualitzant un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "paquet eliminat" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "No es pot accedir al repositori del sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "S'està preparant per desplaçar els paquets seleccionats a" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "S'està preparant per copiar els paquets seleccionats a" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1239,430 +1251,429 @@ msgstr "" "tots els paquets antics amb scope en conflicte s'eliminaran del repositori " "destí, a menys que s'injectin" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nova etiqueta" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "dependències inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "dependències" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "s'està commutant" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "no es pot commutar, el paquet no s'ha trobat, s'omet" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "S'està desplaçant el fitxer" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "s'estan carregant dades del respositori d'origen" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "la clau GPG estava disponible en" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "s'estan injectant dades al respositori destinació" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "s'està eliminant l'entrada del respositori origen" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "l'àtom s'ha tractat correctament" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "S'estan injectant metadades d'Entropy als paquets construïts" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "No s'ha pogut carregar la infraestructura JFYI, GPG" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "s'estan injectant metadades d'Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "la injecció ha acabat" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "s'està eliminant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Verificació d'integritat dels paquets seleccionats" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Es comprovaran tots els paquets del repositori." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Aquesta és la llista de paquets que es comprovaran" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "S'està treballant en la rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "s'està comprovant l'empremta electrònica" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "verificació de l'empremta electrònica de" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NO és sa" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Aquesta és la llista de paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Estadístiques" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Número de paquets comprovats" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Número de paquets sans" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Número de paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "s'està comprovant l'estat de" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "està malmès, s'ha desat la suma de verificació" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "paquets comprovats" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "paquets sans" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "paquets trencats" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "paquets baixats" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "baixades fallides" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "GPG està signant paquets del repositori" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Tots els paquets perduts del repositori es baixaran." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG no està disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "No hi ha claus disponibles per a" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "s'està signant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Error desconegut en signar el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "paquets signats" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "pujat/ignorat" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "S'estan començant a baixar els fitxers necessaris" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "S'estan cercant fitxers necessaris o trencats en una altra rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Els paquets binaris s'han baixat correctament." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Aquests paquets no es troben en línia" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "No es comprovaran" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Configureu la branca a" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "i torneu a intentar-ho" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "S'està copiant el repositori (si no existeix)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "S'estan commutant paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "S'està ignorant" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "ja a la branca" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "s'ha acabat el bucle de migració" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "S'està executant la verificació de paquets orfes SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "S'està escanejant el paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "no se n'ha trobat cap més" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Cadena de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "S'està comprovant" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "S'està executant la verificació de dependències" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Aquestes són les dependències que no s'han trobat" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Necessàries per" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "pel repositori" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "S'han satisfet totes les dependències. Tot és correcte." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Llista de paquets trencats i coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "S'estan abocant els resultats en aquests fitxers" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Es sistema està sa" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "S'estan cercant llibreries coincidents amb Spm, espereu" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Aquests són els paquets coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "No hi ha paquets coincidents" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "El repositori predeterminat no està inicialitzat" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Voleu inicialitzar el repositori predeterminat?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Es continua amb un repositori no inicialitzat" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "Ja teníeu bloquejat el repositori d'Entropy :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "S'està bloquejant i sincronitzant el repositori d'Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Taula d'estat de les rèpliques" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Desbloquejat" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Bloquejat" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "no es pot bloquejar la rèplica" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 msgid "Repository is corrupted!" msgstr "El repositori està malmès!" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "s'està indexant el respositori" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "s'està inicialitzant un repositori buit" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "Fitxer de repositori Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "s'ha inicialitzat correctament" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "s'està afegint un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "s'ha afegit un paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "revisió" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "dependències manuals per a" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Aquestes són les dependències que no s'han trobat" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "No s'han trobat dependències perdudes." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "N'esteu segur?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1670,141 +1681,142 @@ msgstr "N'esteu segur?" msgid "Yes" msgstr "Sí" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "S'ha produït una excepció, es tanquen les tasques" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "repositori del servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "repositori de la comunitat" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Interfície d'Instàncies del Servidor d'Entropy del repositori" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "branca actual" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "tipus" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Repositoris configurats" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "la clau GPG ha vençut" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "arregleu-ho sisplau" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "S'ha produït un error GPG inesperat" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "s'omet" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "fitxers de configuració" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "s'està comprovant el sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "hi ha fitxers de configuració pendents d'actualitzar" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "hi ha dep_rewrites per aquest paquet" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "afegit" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "reemplaçat" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "No s'han reescrit dependències per" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "conjunts" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "s'estan actualitzant conjunts de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "s'està afegint un conjunt de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "s'està eliminant el conjunt de paquets" @@ -1886,8 +1898,7 @@ msgstr "S'està actualitzant la base de dades del sistema usant el repositori" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repositori" @@ -2276,7 +2287,7 @@ msgstr "Baixada múltiple" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "paquets" @@ -2334,16 +2345,8 @@ msgstr "S'està configurant" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "S'està executant una altra instància d'Entropy." @@ -2684,7 +2687,7 @@ msgstr "La còpia de seguretat del repositori s'ha fet correctament" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Tot és correcte" @@ -2967,77 +2970,77 @@ msgstr "" msgid "installing" msgstr "s'està instal·lant" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Dependència en temps d'execució" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Post dependència" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Dependència afegida manualment (pel personal)" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Dependència de construcció" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "El repositori del client està malmès. Si us plau, restaureu una còpia de " "seguretat." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "la raó no està disponible" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask d'usuari" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "keyword del sistema" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask d'usuari" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "package.keywords del repositori d'usuari (tots els paquets)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "package.keywords del repositori d'usuari" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords d'usuari" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "completament emmascarat (per keyword?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "packages.db.mask del repositori general" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "packages.db.keywords del repositori general" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "license.mask d'usuari" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "desemmascarat d'usuari autònom" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "emmascarat d'usuari autònom" @@ -3046,87 +3049,87 @@ msgstr "emmascarat d'usuari autònom" msgid "Entropy needs your attention" msgstr "Entropy us reclama l'atenció" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy us fa una pregunta" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interromput" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Nombre seleccionat" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Si us plau, seleccioneu una opció" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Descarta-ho tot" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Confirmeu-ho" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Afegeix elements" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Edita l'element" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Elimina elements" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Mostra la llista actual" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Escolliu una opció (escriviu un número i premeu retorn):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "No heu escriu un número." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "L'acció no és vàlida." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "Cadena a afegir (-1 per tornar):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "La cadena no és vàlida." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Número de l'element a editar (-1 per tornar):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "antic" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "valor nou:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "L'element no és vàlid." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Número de l'element a eliminar (-1 per tornar):" @@ -3291,16 +3294,18 @@ msgstr "Identificador GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Títol" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3422,7 +3427,6 @@ msgstr "No sou" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Paràmetres incorrectes" @@ -3473,7 +3477,7 @@ msgid "Error while creating package for" msgstr "Error en crear el paquet per" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "No es pot continuar" @@ -3598,7 +3602,7 @@ msgstr "El repositori no està disponible" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Keyword" @@ -3610,7 +3614,7 @@ msgstr "Keyword" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "S'han trobat" @@ -3621,7 +3625,6 @@ msgstr "S'han trobat" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "entrades" @@ -3650,8 +3653,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "paquets ja inclosos com a dependències en nivells superiors (circular)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3798,8 +3801,9 @@ msgstr "Cerca d'eliminats" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "No s'han trobat paquets" @@ -3859,7 +3863,7 @@ msgstr "Cerca per Slot" msgid "Package Set Search" msgstr "Cerca conjunts de paquets" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Cerca per etiqueta" @@ -3936,7 +3940,7 @@ msgstr "Baixada" msgid "Checksum" msgstr "Suma de verificació" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dependències" @@ -4043,7 +4047,7 @@ msgid "repository already enabled" msgstr "el repositori ja està activat" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "el repositori no està disponible" @@ -4109,7 +4113,7 @@ msgstr "actiu" msgid "never synced" msgstr "mai sincronitzat" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Estat" @@ -4160,24 +4164,25 @@ msgstr "No hi ha repositoris especificats a" msgid "Unhandled exception" msgstr "Excepció no suportada" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "El tauler de notícies no està disponible" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Contingut" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Enllaç" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Premeu Enter per seguir" @@ -4187,7 +4192,8 @@ msgstr "Premeu Enter per seguir" msgid "Exit" msgstr "Surt" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Escolliu-ne una escrivint el seu identificador" @@ -4197,7 +4203,7 @@ msgid "Notice board" msgstr "Tauler de notícies" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "No sou root" @@ -4219,8 +4225,7 @@ msgid "Type a number." msgstr "Escriviu un número." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Fitxer de configuració" @@ -4339,7 +4344,7 @@ msgid "Unique files that would be automerged" msgstr "Únics fitxers a combinar automàticament" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Repositori no vàlid" @@ -4357,7 +4362,7 @@ msgstr "Ja esteu connectat com a" msgid "Please logout first" msgstr "Si us plau, desconnecteu-vos primer" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4365,7 +4370,7 @@ msgstr "Si us plau, desconnecteu-vos primer" msgid "Username" msgstr "Nom d'usuari" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4373,7 +4378,7 @@ msgstr "Nom d'usuari" msgid "Password" msgstr "Contrasenya" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4385,7 +4390,7 @@ msgstr "Inicieu la sessió per al" msgid "Login aborted. Not logged in." msgstr "Error en l'inici de sessió. No esteu connectat." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4603,7 +4608,7 @@ msgid "Installed packages database not available" msgstr "La base de dades de paquets instal·lats no està disponible" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "està desaconsellat, useu" @@ -4619,15 +4624,15 @@ msgstr "S'ha netejat la Base de dades del Sistema" msgid "No System Databases found" msgstr "No s'han trobat Bases de dades del sistema" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "No s'han trobat còpies de seguretat de les bases de dades" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Seleccioneu la base de dades que voleu restaurar" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Entropy ha instal·lat l'eina de restauració de bases de dades" @@ -4919,28 +4924,23 @@ msgstr "D'acord, jo plego, no teniu sort" msgid "Go to hell." msgstr "Aneu a pastar fang." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Opcions bàsiques" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "aquesta sortida" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "mostra la versió" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "desactiva la sortida en colors" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "desactiva la sortida en colors" @@ -4949,8 +4949,7 @@ msgstr "desactiva la sortida en colors" msgid "print a bash completion script to stdout" msgstr "imprimeix un script de compleció bash a stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Opcions de l'aplicació" @@ -5002,7 +5001,7 @@ msgstr "lector del tauler de notícies del repositori" msgid "show respositories status" msgstr "mostra l'estat dels repositoris" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "cerca paquets en els repositoris" @@ -5041,8 +5040,7 @@ msgstr "actualitza el sistema amb els últims paquets disponibles" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "pregunta abans de fer cap canvi" @@ -5050,8 +5048,7 @@ msgstr "pregunta abans de fer cap canvi" msgid "just download packages" msgstr "només baixa els paquets" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "mostra el que es pretén fer, sense fer-ho" @@ -5235,7 +5232,7 @@ msgstr "desemmascara un o múltiples paquets" msgid "configure one or more installed packages" msgstr "configura un o més paquets instal·lats" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "cerca dependències no satisfetes" @@ -5251,7 +5248,7 @@ msgstr "ordena paquets segons la mida del disc" msgid "look for missing libraries" msgstr "cerca llibreries perdudes" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "aboca els resultats en fitxers" @@ -5279,7 +5276,7 @@ msgstr "cerca de miscel·lània en repositoris i bases de dades locals" msgid "search from what package a file belongs" msgstr "cerca a quin paquet pertany un fitxer" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "mostra el registre de canvis dels paquets" @@ -5287,13 +5284,11 @@ msgstr "mostra el registre de canvis dels paquets" msgid "search what packages depend on the provided atoms" msgstr "cerca quin paquet depèn dels àtoms proporcionats" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "cerca paquets per descripció" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "mostra quins fitxers pertanyen als àtoms proporcionats" @@ -5334,8 +5329,7 @@ msgstr "cerca entre els paquets instal·lats" msgid "associate given file paths to applications able to read them" msgstr "associa els camins de fitxers amb aplicacions capaces de llegir-los" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "mostra les llibreries d'execució necessàries pels àtoms proporcionats" @@ -5351,8 +5345,7 @@ msgstr "mostra l'arbre d'eliminació pels àtoms especificats" msgid "show atoms needing the provided libraries" msgstr "mostra quins àtoms necessiten les llibreries proporcionades" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "cerca conjunts de paquets disponibles" @@ -5364,31 +5357,28 @@ msgstr "mostra els paquets que contenen el slot proporcionat" msgid "show packages owning the provided tags" msgstr "mostra els paquets que contenen les etiquetes proporcionades" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" "mostra l'arbre de dependències directes dels àtoms d'instal·lació " "proporcionats" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "inclou paquets del sistema, dependències de construcció i informació circular" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" "mostra l'arbre de dependències inverses pels àtoms d'instal·lació " "proporcionats" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "mostra més detalls" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "mostra els resultats en mode script" @@ -5476,7 +5466,7 @@ msgstr "" "genera la base de dades dels paquets instal·lats usant els fitxers del " "sistema [última esperança]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "regenera el mapa SPM UIDs (SPM <-> paquets Entropy)" @@ -5498,355 +5488,22 @@ msgstr "" "d'Entropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "gestiona les característiques del costat de la comunitat" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "funcions de gestió dels repositoris de la comunitat" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "escaneja el sistema cercant paquets compilats de nou" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analitza el directori d'Entropy Store directament" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "torna a empaquetar els àtoms especificats" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "no preguntis res, excepte en casos crítics" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "gestiona només els àtoms especificats" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "executa en mode interactiu (preguntant coses d'una en una)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"afegeix paquets binaris al repositori sense afectar scopes (paquets " -"múltiples)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "funcions de gestió de les rèpliques dels repositoris de la comunitat" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "sincronitza paquets, bases de dades i neteja" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "sincronitza tots els repositoris configurats" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "sincronitza els paquets a través de rèpliques primàries" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "a més, verifica la integritat dels paquets" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"sincronitza la base de dades del repositori actual a través de rèpliques " -"primàries" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "bloqueja la base de dades del repositori (del servidor)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "desbloqueja la base de dades del repositori actual (del servidor)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "bloqueja la base de dades del repositori (del client)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "desbloqueja la base de dades del repositori actual (del client)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "mostra l'estat actual de bloquejos" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "elimina els paquets binaris que no són als repositoris i han vençut" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" -"elimina paquets no disponibles de les rèpliques (semblant a neteja, però més " -"nazi)" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "dies de venciment [per defecte és: 0, perillós!]" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "gestiona un repositori" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(re)inicialitza la base de dades del repositori actual" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "no reomplis la base de dades usant els paquets de les rèpliques" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(re)crea la base de dades pel repositori especificat" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" -"força un identificador de revisió per la base de dades del repositori actual" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "sincronitza la base de dades" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "elimina paquets de branques antigues a la branca actual" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "" -"elimina els àtoms proporcionats per la base de dades del repositori actual" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"elimina els àtoms injectats proporcionats (tots si no s'especifiquen àtoms)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "crea una base de dades de repositori buida en el camí indicat" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "commuta a la branca especificada els àtoms especificats (o world)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "verifica la integritat remota dels àtoms especificats (o world)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "còpia de seguretat de la base de dades del respositori actual" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "restaura una còpia de seguretat de la base de dades del repositori" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "habilita el repositori especificat" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "desactiva el repositori especificat" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "mostra l'estat actual de la Interfície de Servidor" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "comprova si falten dependències als paquets del repositori" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "manega les dependències dels paquets" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"clona un paquet dins d'un repositori assignant-li una etiqueta arbitraria" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "desplaça els paquets d'un repositori a un altre" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "afegeix dependències" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copia els paquets d'un repositori a un altre" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "estableix el repositori per defecte" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "gestiona les signatures digitals del repositori (OpenGPG)" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "crea un parell de claus pels repositoris i signa els paquets" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "esborra el parell de claus (i les signatures digitals) del repositori" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"mostra informació de les claus configurades pels repositoris especificats" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"signa (o signa de nou) paquets del repositori usant el parell de claus actual" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importa el parell de claus, aplica al repositori especificat" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exporta la clau pública del repositori especificat" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "exporta la clau privada del repositori especificat" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "cerca en les bases de dades dels repositoris de la comunitat" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "mostra a quin paquet pertanyen els fitxers proporcionats" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "mostra quins paquets depenen dels àtoms proporcionats" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "llista tots els paquets del repositori per defecte" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "cerca de paquets en la base de dades del repositori per defecte" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "mostra els paquets que contenen les etiquetes especificades" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "" -"mostra els paquets instal·lats que contenen les revisions especificades" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "funcions del gestor de paquets font" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "funció de compilació" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compila paquets pertanyents a les categories seleccionades" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "només llista els paquets" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "no afegeixis slots de paquets antics" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "compila paquets pertanyents als conjunts de paquets seleccionats" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "recontruïr-ho tot" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "executeu l'actualització de la base de dades si tot ha anat bé" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "executeu sincronitza rèpliques si tot ha anat bé" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "escaneja paquets orfes a SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "funcions de gestió del tauler de notícies" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "afegeix un element al tauler de notícies" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "elimina un element del tauler de notícies" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "llegir el tauler de notícies actual" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" -"cerca dependències no satisfetes a través dels repositoris de la comunitat" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "verifica la integritat dels fitxers de paquets locals" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "gestiona les característiques del Contingut Generat per l'Usuari" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "inicieu la sessió d'un repositori específic" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "finalitza la sessió d'un repositori específic" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "força l'acció" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5854,79 +5511,71 @@ msgstr "" "gestiona documents dels paquets del repositori seleccionat (comentaris, " "fitxers, vídeos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "obté els documents disponibles per la clau de paquet especificada (per " "exemple: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "afegeix un document nou per la clau de paquet especificada (per exemple: x11-" "libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" "elimina documents de la base de dades a partir dels seus identificadors" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "gestiona els vots dels paquets del repositori seleccionat" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" "obté els vots per la clau de paquet especificada (per exemple: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" "afegeix un vot per la clau de paquet especificada (per exemple: x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "gestiona la memòria de cau d'Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "esborra la memòria de cau d'Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "elimina els paquets baixats i esborra els directoris temporals" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "mostra informació del sistema" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Heu d'instal·lar sys-apps/entropy-server. :-) Feu-ho!" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "Us cal instal·lar/actualitzar sys-apps/entropy-server. :-) Feu-ho!" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "no hi ha prou paràmetres" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "El repositori de paquets instal·lats està malmès. Regenereu-lo." -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "El disc dur està ple! És culpa vostra!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "No hi ha més memòria! La culpa és vostra!" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -5934,22 +5583,22 @@ msgstr "" "Hola. Sóc el Gestor de Petades. Sento informar-vos que Equo ha petat. Mala " "sort." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Hi ha una cosa que podeu fer, però, per ajudar a fer de Equo una aplicació " "millor." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "-- ENCARA QUE NO VULGUEU ENVIAR EL MATEIX INFORME DIVERSES VEGADES --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "Ara us mostro el que ha passat. No us preocupeu, jo us ajudaré." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5957,11 +5606,11 @@ msgstr "" "Oh! No puc ni escriure a /tmp. Si us plau, copieu l'error i envieu-lo per " "correu electrònic a lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Efectivament esteu connectat a Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -5971,11 +5620,11 @@ msgstr "" "sobre el vostre maquinari als meus creadors perquè em puguin arreglar? (Es " "registrarà la vostra IP)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "D'acord, d'acord... Ho sento!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -5983,19 +5632,19 @@ msgstr "" "Si voleu que us contactem (i us donem suport actiu), contesteu també les " "respostes de baix:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "El nom complet:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "L'adreça de correu electrònic:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "El que estàveu fent:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6003,7 +5652,7 @@ msgstr "" "Moltes gràcies. El registre d'error s'ha enviat correctament i esperem que " "el problema s'arregli el més aviat possible." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." @@ -6011,11 +5660,11 @@ msgstr "" "L'informe d'error no es pot enviar. Quan vulgueu, envieu el fitxer de baix " "per correu electrònic a lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "La versió de Entropy/Equo està desfasada" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "podria fer explotar el sistema!" @@ -6024,7 +5673,6 @@ msgstr "podria fer explotar el sistema!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "No s'està processant cap paquet" @@ -6167,10 +5815,7 @@ msgstr "està trencat" msgid "atom" msgstr "àtom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "a" @@ -6195,6 +5840,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Aquests són els paquets que és recomanable que elimineu MANUALMENT" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Aquests són els paquets que s'eliminaran" @@ -6422,7 +6068,7 @@ msgstr "La instal·lació ha acabat" msgid "These are the packages that would be masked" msgstr "Aquests són els paquets que s'emmascararan" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Voleu continuar?" @@ -6458,8 +6104,7 @@ msgstr "Està prohibida l'eliminació" msgid "Would you like to calculate dependencies ?" msgstr "Voleu calcular les dependències?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Els voleu eliminar ara?" @@ -6509,7 +6154,10 @@ msgstr "10 segons" msgid "Libraries/Executables statistics" msgstr "Estadístiques de Llibreries/Executables" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "No coincidents" @@ -6517,720 +6165,1023 @@ msgstr "No coincidents" msgid "Would you like to install them ?" msgstr "Voleu instal·lar-los?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "mostra l'estat actual dels repositoris" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "cerques en les bases de dades dels repositoris" - -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -"cerca dependències de paquets coincidents en la base de dades del repositori " -"per defecte" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(re)inicialitza la base de dades del repositori actual" +msgid "available tests" +msgstr "disponible" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Prova de dependències" + +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Verificació de les llibreries" + +#: ../../server/eit/commands/test.py:57 +#, fuzzy +msgid "dump results to file" +msgstr "aboca els resultats en fitxers" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" +msgstr "cerca llibreries perdudes" + +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" +msgstr "" + +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Àtoms de paquets" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "a més, verifica la integritat dels paquets" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 +#, fuzzy +msgid "verify remote packages integrity" +msgstr "a més, verifica la integritat dels paquets" + +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" +msgstr "" + +#: ../../server/eit/commands/query.py:55 +msgid "execute query" +msgstr "" + +#: ../../server/eit/commands/query.py:56 +#, fuzzy +msgid "available queries" +msgstr "disponible" + +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "package.mask d'usuari" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" +msgstr "" + +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "habilita el repositori especificat" + +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Nom de l'ordinador central" + +#: ../../server/eit/commands/query.py:72 +#, fuzzy +msgid "show libraries (.so) required by matched packages" +msgstr "Aquests són els paquets coincidents" + +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "" +"mostra l'arbre de dependències inverses pels àtoms d'instal·lació " +"proporcionats" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" +msgstr "" + +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" msgstr "no inclou dependències inverses" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "commuta el repositori a la branca especificada" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "verifica la integritat remota dels àtoms especificats" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "clona un paquet assignant-li una etiqueta arbitraria" - -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" -msgstr "emmascara el paquet en el repositori" - -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" -msgstr "desemmascara el paquet en el repositori" - -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "escaneja paquets orfes a SPM" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "escaneja paquets nous disponibles a SPM" - -#: ../../server/reagent.py:120 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "look for missing libraries (scan system)" -msgstr "cerca llibreries perdudes" +msgid "search through package sets" +msgstr "cerca conjunts de paquets disponibles" -#: ../../server/reagent.py:122 +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" + +#: ../../server/eit/commands/query.py:114 #, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "cerca llibreries perdudes" +msgid "package set name" +msgstr "Nom del conjunt de paquets" -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "elimina els paquets baixats i esborra els directoris temporals)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" -"S'estan començant a sincronitzar les dades a través de les rèpliques " -"(paquets/bases de dades)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "S'està interrompent!" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Si us plau, introduïu un missatge de publicació" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Voleu continuar amb el procés de neteja?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Surt/Envia" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Text de la notícia" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL destacada (opcional)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Tauler de notícies del repositori, inserció d'un element nou" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Escolliu el que voleu eliminar" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Esteu segur que el voleu eliminar?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "S'estan començant a bloquejar les bases de dades de les rèpliques" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "S'ha produït un error en almenys una rèplica" - -#: ../../server/server_activator.py:458 -msgid "Repositories lock complete" -msgstr "El bloqueig de repositoris ha acabat" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "S'estan començant a desbloquejar les bases de dades de les rèpliques" - -#: ../../server/server_activator.py:473 -msgid "Repositories unlock complete" -msgstr "El desbloqueig de repositoris s'ha acabat" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" -"S'estan començant a bloquejar les bases de dades de les rèpliques de baixada" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "El bloqueig de rèpliques de baixada ha acabat" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" -"S'estan començant a desbloquejar les bases de dades de les rèpliques de " -"baixada" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "El desbloqueig de les rèpliques de baixada ha acabat" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "BASE DE DADES" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "BAIXADA" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 +#: ../../server/eit/commands/query.py:118 #, fuzzy -msgid "Syncing repository" -msgstr "S'estan sincronitzant repositoris" +msgid "search packages through their description" +msgstr "cerca paquets per descripció" -#: ../../server/server_activator.py:566 -msgid "Repositories sync error, cannot continue." -msgstr "Error en la sincronització dels repositoris, no es pot continuar." +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informació del repositori" -#: ../../server/server_activator.py:588 -msgid "Cleaning unavailable packages from repository" -msgstr "S'estan netejant els paquets no disponibles del repositori" +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Descripció del paquet" -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" -"S'estan eliminant paquets no disponibles, substituir allò predeterminat per " -"Entropy sol ser dolent." +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "No s'ha trobat res" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" -"Els usuaris amb repositoris antics no podran trobar fitxers de paquets " -"remotament." +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "llibreries" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -msgid "Remote Entropy Repository Status" -msgstr "Estat del Repositori d'Entropy Remot" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Ordinador central" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Revisió" - -#: ../../server/server_activator.py:615 -msgid "Local revision currently at" -msgstr "La revisió local actualment a" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "seleccioneu en quina branca voleu operar" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "funcions de gestió de repositoris de paquets" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "" -"s'estan sincronitzant repositoris de paquets a través de rèpliques primàries" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "funcions de gestió de repositoris" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "S'ha carregat la interfície GPG, directori home" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "S'està important el parell de claus pel repositori" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "Ja existeix un altre parell de claus pel repositori" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "S'ha importat la clau GPG amb empremta" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Ara és recomanable que signeu tots els paquets que conté" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "S'està exportant la clau privada del repositori" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "S'està exportant la clau pública del repositori" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "No hi ha parells de claus disponibles pel repositori" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "La clau del repositori ha VENÇUT" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "No s'ha pogut exportar la clau GPG del repositori" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "S'ha exportat la clau GPG pel repositori" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "S'estan creant les claus del repositori" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "Ja existeix una altra clau pel repositori" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "Escriviu l'adreça de correu" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "Inseriu els dies d'expiració (0= sense expiració)" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "Inseriu la frase contrasenya (buit=sense contrasenya)" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "Creació de parell de claus GPG del repositori" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "S'ha generat la clau GPG amb empremta" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" -"Assegureu-vos generar una clau de revocació i deseu-la en un lloc segur." - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "Potser també voleu enviar les vostres claus a un servidor de claus" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "S'estan eliminat les claus del repositori" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "No hi ha claus disponibles pel repositori especificat" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "N'esteu segur?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "No hi ha metadades de claus per" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "S'ha eliminat la clau GPG amb empremta" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "Informació GPG del repositori" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "Clau d'identificador públic" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "Empremta de clau pública" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Mida de la clau" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Data de creació" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Expira el" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "no s'ha especificat cap paquet." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "S'està habilitant" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Habilitat" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "Ja habilitat" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Desactivant" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Desactivat" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "ja desactivat" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "La sintaxi no és vàlida." - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "No s'ha especificat cap repositori vàlid" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "No hi ha coincidents" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "No s'han seleccionat paquets." - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dependències de paquets" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "No dependències" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Tipus de dependència" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Seleccioneu un tipus de dependència per a" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Editor de dependències" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Ho confirmeu?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "Les dependències s'han actualitzat" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "S'està emmascarant" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "S'està desemmascarant" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "S'estan concordant paquets a eliminar" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "No hi ha prou paràmetres" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Aquests són els paquets que s'eliminaran de la base de dades" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "S'estan eliminat els paquets seleccionats" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" -"S'han eliminat els paquets. Per eliminar els paquets binaris, executeu " -"l'activator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "S'estan cercant els paquets injectats per eliminar" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Aquests són els paquets injectats que s'han seleccionat per eliminar" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" -"S'està commutant de branca, assegureu-vos que teniu els paquets a sync." - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "S'estan recollint paquets que es marcaran" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Aquests són els paquets que es marcaran" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "No s'han especificat repositoris vàlids." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Els repositoris especificats no són vàlids." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "S'ha inicialitzat el repositori d'Entropy" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "S'està creant una base de dades buida a" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "No es pot sobreescriure un fitxer que ja existeix" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "S'està identificant la base de dades del repositori" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "No hi ha paquets vàlids per empaquetar de nou." - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "S'estan cercant diferències a la base de dades" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Àtom no vàlid" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "No hi ha tasques pendents" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Aquests són els paquets que es canviaran a l'estat d'injectat" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Els voleu transformar ara?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "S'està transformant des de la base de dades" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "La transformació de base de dades ha acabat" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "vençut" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Quins paquets voleu eliminar?" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Elimina aquest paquet?" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Quins paquets voleu afegir?" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Afegeix aquest paquet?" - -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "Aquests són els paquets que s'instal·laran/s'actualitzaran " - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "avís" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Els voleu empaquetar ara?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "a dins" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "S'estan comprimint paquets" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "S'ignora l'entrada trencada Spm, si us plau recompileu-la" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "No hi ha res per fer, comproveu-ho després." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Entrades gestionades" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "no s'ha trobat l'usuari" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "No s'han trobat paquets" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "s'està forçant l'actualització de les metadades dels paquets" + +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "revisió local" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "paquets desats" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "paquets pujats" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "paquets signats" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "afegit" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "s'està commutant" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"Aquests són els paquets nous disponibles, siguin actualitzacions o no " -"instal·lats" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "No s'han trobat conjuts de paquets" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "no s'ha trobat el conjunt de paquets" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "No s'ha trobat res" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "mostra l'estat dels repositoris" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "No es proporcionen paquets del nucli" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "llista els paquets instal·lats" + +#: ../../server/eit/commands/list.py:80 +#, fuzzy +msgid "not available" +msgstr "No disponible" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "sense paquets" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "cerca paquets en els repositoris" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "cerca paquets en els repositoris" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "S'ha inicialitzat el repositori d'Entropy" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Repositori actual" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "s'està indexant el respositori" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dependències de paquets" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "desplaça els paquets d'un repositori a un altre" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nom del conjunt de paquets" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "No s'ha trobat res" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "no està llistat al repositori!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "error en el sòcol" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "la revisió del repositori no és vàlida" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "mostra l'estat dels repositoris" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "desplaça els paquets d'un repositori a un altre" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "aquesta ajuda" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "elimina el repositori" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "S'omet el repositori" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Revisió del repositori" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "sincronitza tots els repositoris configurats" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "gestiona un repositori" + +#: ../../server/eit/commands/push.py:146 +#, fuzzy +msgid "Commit message" +msgstr "Missatge d'error" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Si us plau, introduïu un missatge de publicació" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Estat del Repositori d'Entropy Remot" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Ordinador central" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Remotament" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "local" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "S'està interrompent!" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Genera informació d'entrada" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Mostra les aplicacions disponibles" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "s'està carregant el tauler de notícies de" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "s'està eliminant el tauler de notícies de" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Tauler de notícies" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Escriviu l'adreça URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Escolliu el que voleu eliminar" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Esteu segur que el voleu eliminar?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Surt/Envia" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "lector del tauler de notícies del repositori" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "camí del repositori" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "s'està treballant en el repositori" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "habilita el repositori especificat" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "repositori de paquets instal·lats" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "S'estan eliminat els paquets seleccionats" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "No hi ha coincidents" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "No hi ha paquets vàlids per empaquetar de nou." + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "S'estan cercant diferències a la base de dades" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "S'està instal·lant el paquet" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "No hi ha tasques pendents" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "s'ha injectat" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "S'està transformant des de la base de dades" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "La transformació de base de dades ha acabat" +msgid "Action completed" +msgstr "la injecció ha acabat" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "vençut" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Quins paquets voleu eliminar?" +msgid "Select packages for removal" +msgstr "S'estan cercant els paquets injectats per eliminar" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Elimina aquest paquet?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "S'eliminaran de la base de dades del sistema" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Quins paquets voleu afegir?" +msgid "Select packages to add" +msgstr "Hi ha alguns paquets emmascarats" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Afegeix aquest paquet?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "S'afegiran a la base de dades del sistema" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "avís" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Els voleu empaquetar ara?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "a dins" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "S'estan comprimint paquets" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "S'ignora l'entrada trencada Spm, si us plau recompileu-la" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "No hi ha res per fer, comproveu-ho després." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Entrades gestionades" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "repositori de paquets instal·lats" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "no està disponible" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "s'està treballant en el repositori" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "coincidència d'un paquet en els repositoris" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "habilita el repositori especificat" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "error del repositori en eliminar paquets" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "mostra l'estat actual de bloquejos" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Taula d'estat de les rèpliques" + +#: ../../server/eit/commands/lock.py:110 +msgid "server" +msgstr "" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "del repositori" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "Al repositori" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"inclou paquets del sistema, dependències de construcció i informació circular" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "" +"mostra l'arbre de dependències inverses pels àtoms d'instal·lació " +"proporcionats" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "S'estan netejant els paquets no disponibles del repositori" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "" +"S'estan eliminant paquets no disponibles, substituir allò predeterminat per " +"Entropy sol ser dolent." + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "" +"Els usuaris amb repositoris antics no podran trobar fitxers de paquets " +"remotament." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "S'estan netejant els paquets no disponibles del repositori" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "fitxers desats" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "mostra quins fitxers pertanyen als àtoms proporcionats" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "habilita el repositori especificat" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "no inclou dependències inverses" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "desplaça els paquets d'un repositori a un altre" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dependències de paquets" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "No dependències" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Tipus de dependència" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Seleccioneu un tipus de dependència per a" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Editor de dependències" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Ho confirmeu?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "Les dependències s'han actualitzat" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "repositori de paquets instal·lats" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dependències de paquets" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "S'està configurant el paquet" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copia els paquets d'un repositori a un altre" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "S'estan desempaquetant els paquets de dependències" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "força l'acció" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "crea un parell de claus pels repositoris i signa els paquets" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "esborra el parell de claus (i les signatures digitals) del repositori" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "No hi ha parells de claus disponibles pel repositori" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"signa (o signa de nou) paquets del repositori usant el parell de claus actual" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importa el parell de claus, aplica al repositori especificat" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Empremta de clau pública" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "el repositori remot de sobte s'ha bloquejat" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "S'ha carregat la interfície GPG, directori home" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "S'estan creant les claus del repositori" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "Ja existeix una altra clau pel repositori" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "Escriviu l'adreça de correu" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "Inseriu els dies d'expiració (0= sense expiració)" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "Inseriu la frase contrasenya (buit=sense contrasenya)" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "Creació de parell de claus GPG del repositori" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "S'ha generat la clau GPG amb empremta" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Ara és recomanable que signeu tots els paquets que conté" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Assegureu-vos generar una clau de revocació i deseu-la en un lloc segur." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "Potser també voleu enviar les vostres claus a un servidor de claus" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "S'estan eliminat les claus del repositori" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "No hi ha claus disponibles pel repositori especificat" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "N'esteu segur?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "No hi ha metadades de claus per" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "S'ha eliminat la clau GPG amb empremta" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "Informació GPG del repositori" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "Clau d'identificador públic" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "Empremta de clau pública" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Mida de la clau" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Data de creació" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Expira el" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "S'està important el parell de claus pel repositori" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Ja existeix un altre parell de claus pel repositori" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "S'ha importat la clau GPG amb empremta" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Ara és recomanable que signeu tots els paquets que conté" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "S'està exportant la clau privada del repositori" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "S'està exportant la clau pública del repositori" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "No hi ha parells de claus disponibles pel repositori" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "La clau del repositori ha VENÇUT" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "No s'ha pogut exportar la clau GPG del repositori" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "S'ha exportat la clau GPG pel repositori" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "gestiona un repositori" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Àtoms de paquets" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "directori de càrrega" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "no està implementada" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "S'està instal·lant el paquet" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "cerca paquets en els repositoris" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "No s'ha pogut commutar a la branca" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branca" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Àtom no vàlid" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "gestiona un repositori" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Repositori actual" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7288,116 +7239,122 @@ msgstr "Hi ha conjunts de paquets incomplets, continueu si assumiu el risc" msgid "Application" msgstr "Aplicació" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "S'ha connectat correctament com a" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "no està implementada" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "El vot s'ha registrat correctament" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "S'ha produït un error en registrar el vot" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Ja s'ha eliminat" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Aplicacions" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Aplicacions a eliminar" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Aplicacions a degradar" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Aplicacions a instal·lar" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Aplicacions a actualitzar" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Aplicacions a instal·lar de nou" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proposats" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destí" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Id. de seguretat" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Nom de l'aplicació" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "S'està carregant..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "S'han carregat els avisos" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "No hi ha avisos" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "No hi ha res a mostrar" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nom de fitxer" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "no es pot desactivar el repositori per defecte" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Actiu" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Actualitza" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Revisió" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identificador del repositori" @@ -7814,6 +7771,10 @@ msgstr "Hi ha alguns paquets emmascarats" msgid "Masked package" msgstr "Paquet emmascarat" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Habilitat" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Si us plau confirmeu les accions de sobre" @@ -9872,12 +9833,483 @@ msgstr "Notificador d'actualitzacions de l'aplicació Magneto" msgid "_Load Package Manager" msgstr "Carrega e_l gestor de paquets" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "Heu d'executar la Interfície del Servidor d'Entropy com a root" +#~ msgid "handles community-side features" +#~ msgstr "gestiona les característiques del costat de la comunitat" + +#~ msgid "community repositories management functions" +#~ msgstr "funcions de gestió dels repositoris de la comunitat" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "escaneja el sistema cercant paquets compilats de nou" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analitza el directori d'Entropy Store directament" + +#~ msgid "repackage the specified atoms" +#~ msgstr "torna a empaquetar els àtoms especificats" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "no preguntis res, excepte en casos crítics" + +#~ msgid "manage only the specified atoms" +#~ msgstr "gestiona només els àtoms especificats" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "executa en mode interactiu (preguntant coses d'una en una)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "afegeix paquets binaris al repositori sense afectar scopes (paquets " +#~ "múltiples)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "" +#~ "funcions de gestió de les rèpliques dels repositoris de la comunitat" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "sincronitza paquets, bases de dades i neteja" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "sincronitza els paquets a través de rèpliques primàries" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "sincronitza la base de dades del repositori actual a través de rèpliques " +#~ "primàries" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "bloqueja la base de dades del repositori (del servidor)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "desbloqueja la base de dades del repositori actual (del servidor)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "bloqueja la base de dades del repositori (del client)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "desbloqueja la base de dades del repositori actual (del client)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "elimina els paquets binaris que no són als repositoris i han vençut" #, fuzzy -#~ msgid "reset error" -#~ msgstr "error en el sòcol" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "" +#~ "elimina paquets no disponibles de les rèpliques (semblant a neteja, però " +#~ "més nazi)" + +#~ msgid "expiration days [default is: 0, dangerous!]" +#~ msgstr "dies de venciment [per defecte és: 0, perillós!]" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(re)inicialitza la base de dades del repositori actual" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "no reomplis la base de dades usant els paquets de les rèpliques" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(re)crea la base de dades pel repositori especificat" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "força un identificador de revisió per la base de dades del repositori " +#~ "actual" + +#~ msgid "synchronize the database" +#~ msgstr "sincronitza la base de dades" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "elimina paquets de branques antigues a la branca actual" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "" +#~ "elimina els àtoms proporcionats per la base de dades del repositori actual" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "elimina els àtoms injectats proporcionats (tots si no s'especifiquen " +#~ "àtoms)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "crea una base de dades de repositori buida en el camí indicat" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "commuta a la branca especificada els àtoms especificats (o world)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "verifica la integritat remota dels àtoms especificats (o world)" + +#~ msgid "backup current repository database" +#~ msgstr "còpia de seguretat de la base de dades del respositori actual" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "restaura una còpia de seguretat de la base de dades del repositori" + +#~ msgid "enable the specified repository" +#~ msgstr "habilita el repositori especificat" + +#~ msgid "disable the specified repository" +#~ msgstr "desactiva el repositori especificat" + +#~ msgid "show the current Server Interface status" +#~ msgstr "mostra l'estat actual de la Interfície de Servidor" + +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "comprova si falten dependències als paquets del repositori" + +#~ msgid "handle packages dependencies" +#~ msgstr "manega les dependències dels paquets" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "clona un paquet dins d'un repositori assignant-li una etiqueta arbitraria" + +#~ msgid "pulls dependencies in" +#~ msgstr "afegeix dependències" + +#~ msgid "set the default repository" +#~ msgstr "estableix el repositori per defecte" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "gestiona les signatures digitals del repositori (OpenGPG)" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "mostra informació de les claus configurades pels repositoris especificats" + +#~ msgid "export public key of given repository" +#~ msgstr "exporta la clau pública del repositori especificat" + +#~ msgid "export private key of given repository" +#~ msgstr "exporta la clau privada del repositori especificat" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "cerca en les bases de dades dels repositoris de la comunitat" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "mostra a quin paquet pertanyen els fitxers proporcionats" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "mostra quins paquets depenen dels àtoms proporcionats" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "llista tots els paquets del repositori per defecte" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "cerca de paquets en la base de dades del repositori per defecte" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "mostra els paquets que contenen les etiquetes especificades" + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "" +#~ "mostra els paquets instal·lats que contenen les revisions especificades" + +#~ msgid "source package manager functions" +#~ msgstr "funcions del gestor de paquets font" + +#~ msgid "compilation function" +#~ msgstr "funció de compilació" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compila paquets pertanyents a les categories seleccionades" + +#~ msgid "just list packages" +#~ msgstr "només llista els paquets" + +#~ msgid "do not pull old package slots" +#~ msgstr "no afegeixis slots de paquets antics" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "compila paquets pertanyents als conjunts de paquets seleccionats" + +#~ msgid "rebuild everything" +#~ msgstr "recontruïr-ho tot" + +#~ msgid "run database update if all went fine" +#~ msgstr "executeu l'actualització de la base de dades si tot ha anat bé" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "executeu sincronitza rèpliques si tot ha anat bé" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "escaneja paquets orfes a SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "funcions de gestió del tauler de notícies" + +#~ msgid "add a news item to the notice board" +#~ msgstr "afegeix un element al tauler de notícies" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "elimina un element del tauler de notícies" + +#~ msgid "read the current notice board" +#~ msgstr "llegir el tauler de notícies actual" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "cerca dependències no satisfetes a través dels repositoris de la comunitat" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "verifica la integritat dels fitxers de paquets locals" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Heu d'instal·lar sys-apps/entropy-server. :-) Feu-ho!" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Us cal instal·lar/actualitzar sys-apps/entropy-server. :-) Feu-ho!" + +#~ msgid "show current repositories status" +#~ msgstr "mostra l'estat actual dels repositoris" + +#~ msgid "do some searches into repository databases" +#~ msgstr "cerques en les bases de dades dels repositoris" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "" +#~ "cerca dependències de paquets coincidents en la base de dades del " +#~ "repositori per defecte" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(re)inicialitza la base de dades del repositori actual" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "commuta el repositori a la branca especificada" + +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verifica la integritat remota dels àtoms especificats" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "clona un paquet assignant-li una etiqueta arbitraria" + +#~ msgid "mask given package in given repository" +#~ msgstr "emmascara el paquet en el repositori" + +#~ msgid "unmask given packages in given repository" +#~ msgstr "desemmascara el paquet en el repositori" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "escaneja paquets orfes a SPM" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "escaneja paquets nous disponibles a SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "cerca llibreries perdudes" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "elimina els paquets baixats i esborra els directoris temporals)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "S'estan començant a sincronitzar les dades a través de les rèpliques " +#~ "(paquets/bases de dades)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Voleu continuar amb el procés de neteja?" + +#~ msgid "Notice text" +#~ msgstr "Text de la notícia" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL destacada (opcional)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Tauler de notícies del repositori, inserció d'un element nou" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "S'estan començant a bloquejar les bases de dades de les rèpliques" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "S'ha produït un error en almenys una rèplica" + +#~ msgid "Repositories lock complete" +#~ msgstr "El bloqueig de repositoris ha acabat" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "" +#~ "S'estan començant a desbloquejar les bases de dades de les rèpliques" + +#~ msgid "Repositories unlock complete" +#~ msgstr "El desbloqueig de repositoris s'ha acabat" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "" +#~ "S'estan començant a bloquejar les bases de dades de les rèpliques de " +#~ "baixada" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "El bloqueig de rèpliques de baixada ha acabat" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "S'estan començant a desbloquejar les bases de dades de les rèpliques de " +#~ "baixada" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "El desbloqueig de les rèpliques de baixada ha acabat" + +#~ msgid "DATABASE" +#~ msgstr "BASE DE DADES" + +#~ msgid "DOWNLOAD" +#~ msgstr "BAIXADA" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "S'estan sincronitzant repositoris" + +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Error en la sincronització dels repositoris, no es pot continuar." + +#~ msgid "Local revision currently at" +#~ msgstr "La revisió local actualment a" + +#~ msgid "choose on what branch operating" +#~ msgstr "seleccioneu en quina branca voleu operar" + +#~ msgid "package repositories handling functions" +#~ msgstr "funcions de gestió de repositoris de paquets" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "" +#~ "s'estan sincronitzant repositoris de paquets a través de rèpliques " +#~ "primàries" + +#~ msgid "repository handling functions" +#~ msgstr "funcions de gestió de repositoris" + +#~ msgid "no package specified." +#~ msgstr "no s'ha especificat cap paquet." + +#~ msgid "Enabling" +#~ msgstr "S'està habilitant" + +#~ msgid "already enabled" +#~ msgstr "Ja habilitat" + +#~ msgid "Disabling" +#~ msgstr "Desactivant" + +#~ msgid "Disabled" +#~ msgstr "Desactivat" + +#~ msgid "already disabled" +#~ msgstr "ja desactivat" + +#~ msgid "Invalid syntax." +#~ msgstr "La sintaxi no és vàlida." + +#~ msgid "No valid repository specified." +#~ msgstr "No s'ha especificat cap repositori vàlid" + +#~ msgid "No packages selected." +#~ msgstr "No s'han seleccionat paquets." + +#~ msgid "Masking" +#~ msgstr "S'està emmascarant" + +#~ msgid "Unmasking" +#~ msgstr "S'està desemmascarant" + +#~ msgid "Matching packages to remove" +#~ msgstr "S'estan concordant paquets a eliminar" + +#~ msgid "Not enough parameters" +#~ msgstr "No hi ha prou paràmetres" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Aquests són els paquets que s'eliminaran de la base de dades" + +#~ msgid "Removing selected packages" +#~ msgstr "S'estan eliminat els paquets seleccionats" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "S'han eliminat els paquets. Per eliminar els paquets binaris, executeu " +#~ "l'activator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "" +#~ "Aquests són els paquets injectats que s'han seleccionat per eliminar" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "S'està commutant de branca, assegureu-vos que teniu els paquets a sync." + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "S'estan recollint paquets que es marcaran" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Aquests són els paquets que es marcaran" + +#~ msgid "No valid repositories specified." +#~ msgstr "No s'han especificat repositoris vàlids." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Els repositoris especificats no són vàlids." + +#~ msgid "Creating empty database to" +#~ msgstr "S'està creant una base de dades buida a" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "No es pot sobreescriure un fitxer que ja existeix" + +#~ msgid "Bumping Repository database" +#~ msgstr "S'està identificant la base de dades del repositori" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Aquests són els paquets que es canviaran a l'estat d'injectat" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Els voleu transformar ara?" + +#~ msgid "Transforming from database" +#~ msgstr "S'està transformant des de la base de dades" + +#~ msgid "Database transform complete" +#~ msgstr "La transformació de base de dades ha acabat" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Quins paquets voleu eliminar?" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Quins paquets voleu afegir?" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Aquests són els paquets que s'instal·laran/s'actualitzaran " + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "Aquests són els paquets nous disponibles, siguin actualitzacions o no " +#~ "instal·lats" + +#~ msgid "No package sets found" +#~ msgstr "No s'han trobat conjuts de paquets" + +#~ msgid "package set not found" +#~ msgstr "no s'ha trobat el conjunt de paquets" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "La transformació de base de dades ha acabat" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Quins paquets voleu eliminar?" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Quins paquets voleu afegir?" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Heu d'executar la Interfície del Servidor d'Entropy com a root" #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "No es pot accedir al bloqueig de recursos d'Entropy." @@ -10045,9 +10477,6 @@ msgstr "Carrega e_l gestor de paquets" #~ msgid "empty username" #~ msgstr "el nom d'usuari és buit" -#~ msgid "user not found" -#~ msgstr "no s'ha trobat l'usuari" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "heu d'iniciar la sessió a la pàgina web per actualitzar el format de la " @@ -10126,9 +10555,6 @@ msgstr "Carrega e_l gestor de paquets" #~ msgid "EAPI3 Service status" #~ msgstr "Estat del Servei EAPI3" -#~ msgid "remote repository suddenly locked" -#~ msgstr "el repositori remot de sobte s'ha bloquejat" - #~ msgid "EAPI3 Service" #~ msgstr "Servei EAPI3" diff --git a/misc/po/da.po b/misc/po/da.po index 912ed8faa..0f1d3afa1 100644 --- a/misc/po/da.po +++ b/misc/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2006-02-14 14:52+0100\n" "Last-Translator: tim \n" "Language-Team: Danish \n" @@ -17,41 +17,41 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 #, fuzzy msgid "Syncing current database" msgstr "Kører Transaktion" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 #, fuzzy msgid "Removing entry" msgstr "Sletter" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 #, fuzzy msgid "Adding entry" msgstr "Sletter" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 #, fuzzy msgid "Exporting database table" msgstr "Kører Transaktion" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 #, fuzzy msgid "Database Export complete." msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -60,21 +60,21 @@ msgstr "Indlæsning afsluttet" msgid "ATTENTION" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Kilde" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "" @@ -272,9 +272,9 @@ msgstr "Sorterer Pakker" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 #, fuzzy msgid "error" msgstr "Fejl" @@ -282,7 +282,7 @@ msgstr "Fejl" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "" @@ -333,7 +333,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -402,7 +402,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -436,7 +436,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "" @@ -483,7 +483,7 @@ msgid "Error calculating dependencies" msgstr "Installer som afhængighed" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 #, fuzzy msgid "not supported" msgstr "Installeret" @@ -555,531 +555,531 @@ msgstr "Ønsker du at forsættet ?" msgid "setting directory to" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 #, fuzzy msgid "looking for file in mirror" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 #, fuzzy msgid "unlocking" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 #, fuzzy msgid "locking" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 #, fuzzy msgid "mirror" msgstr "_Filspejlsliste" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 #, fuzzy msgid "mirror already locked" msgstr "Slettet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 #, fuzzy msgid "mirror already unlocked" msgstr "Slettet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 #, fuzzy msgid "mirror for download" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 #, fuzzy msgid "for download" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 #, fuzzy msgid "unlock error" msgstr "Du er ved at slette %s pakker\n" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 #, fuzzy msgid "connecting to download package" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 #, fuzzy msgid "downloading package" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 #, fuzzy msgid "package" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 #, fuzzy msgid "is not listed in the repository !" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 #, fuzzy msgid "verifying checksum of package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 #, fuzzy msgid "downloaded successfully" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 #, fuzzy msgid "unable to download repository revision" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 #, fuzzy msgid "mirror doesn't have valid revision file" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 #, fuzzy msgid "Local statistics" msgstr "Opdateret" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 #, fuzzy msgid "upload directory" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 #, fuzzy msgid "files ready" msgstr "Fi_ler" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 #, fuzzy msgid "packages directory" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 #, fuzzy msgid "download" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 #, fuzzy msgid "remove" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 #, fuzzy msgid "Packages to be removed" msgstr "Pakker til behandling" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 #, fuzzy msgid "Packages to be moved locally" msgstr "Pakker Til Sletning" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 #, fuzzy msgid "Packages to be uploaded" msgstr "Behandling af pakker afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 #, fuzzy msgid "Total removal size" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 #, fuzzy msgid "Total upload size" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 #, fuzzy msgid "Total download size" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 #, fuzzy msgid "remote packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 #, fuzzy msgid "files stored" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 #, fuzzy msgid "Calculating queues" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 #, fuzzy msgid "removing package+hash" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 #, fuzzy msgid "removal complete" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 #, fuzzy msgid "copying file+hash to repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 #, fuzzy msgid "upload errors" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 #, fuzzy msgid "reason" msgstr "Filkilde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 #, fuzzy msgid "upload completed successfully" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 #, fuzzy msgid "download errors" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 #, fuzzy msgid "download completed successfully" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 #, fuzzy msgid "QA checking package file" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 #, fuzzy msgid "starting packages sync" msgstr "Henter Pakker : %s" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 #, fuzzy msgid "packages sync" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 #, fuzzy msgid "socket error" msgstr "Du er ved at slette %s pakker\n" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 #, fuzzy msgid "on" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 #, fuzzy msgid "nothing to do on" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 #, fuzzy msgid "Expanding queues" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 #, fuzzy msgid "nothing to sync for" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 #, fuzzy msgid "Would you like to run the steps above ?" msgstr "Vis Installerede Pakker" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 #, fuzzy msgid "you must package them again" msgstr "Vis Tilgængelige Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 #, fuzzy msgid "exception caught" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 #, fuzzy msgid "at least one mirror synced properly!" msgstr "Ønsker du at forsættet ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 #, fuzzy msgid "collecting expired packages" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 #, fuzzy msgid "collecting expired packages in the selected branches" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 #, fuzzy msgid "nothing to remove on this branch" msgstr "Behandler pakker for %s" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 #, fuzzy msgid "these are the expired packages" msgstr "Vis Installerede Pakker" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 #, fuzzy msgid "removing packages remotely" msgstr "Behandler pakker for %s" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 #, fuzzy msgid "remove errors" msgstr "Du er ved at slette %s pakker\n" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 #, fuzzy msgid "removing packages locally" msgstr "Vis Installerede Pakker" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 #, fuzzy msgid "downloading notice board from mirrors to" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 #, fuzzy msgid "notice board downloaded successfully from" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 #, fuzzy msgid "uploading notice board from" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 #, fuzzy msgid "notice board upload failed on" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 #, fuzzy msgid "notice board upload success" msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -1094,8 +1094,8 @@ msgid "download path" msgstr "Størrelse af filer som skal hentes" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 #, fuzzy msgid "errors" msgstr "_Filspejlsliste" @@ -1105,202 +1105,214 @@ msgstr "_Filspejlsliste" msgid "failed to download from mirror" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 #, fuzzy msgid "Bumping old data back" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 #, fuzzy msgid "configured package sets" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 #, fuzzy msgid "None configured" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 #, fuzzy msgid "dump light checksum" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 #, fuzzy msgid "opener" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 #, fuzzy msgid "disabled EAPI" msgstr "Installeret" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "Kører Transaktion" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "Oprettelse af %s profilen fejlede" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "Slettet" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 #, fuzzy msgid "download issues" msgstr "Størrelse af filer som skal hentes" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 #, fuzzy msgid "upload issues" msgstr "Opdateringer" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 #, fuzzy msgid "has been injected" msgstr "Installeret" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 #, fuzzy msgid "repository not configured" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -1308,600 +1320,599 @@ msgstr "" msgid "repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 #, fuzzy msgid "cannot match" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 #, fuzzy msgid "Invalid tag specified" msgstr "Ingen valgte pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 #, fuzzy msgid "flushing back selected packages from branches" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 #, fuzzy msgid "nothing to do" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 #, fuzzy msgid "these are the packages that will be flushed" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 #, fuzzy msgid "checking package hash" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 #, fuzzy msgid "wrong md5" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 #, fuzzy msgid "error downloading packages from mirrors" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 #, fuzzy msgid "working on branch" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 #, fuzzy msgid "updating package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 #, fuzzy msgid "package flushed" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Ønsker du at forsættet ?" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 #, fuzzy msgid "Preparing to move selected packages to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 #, fuzzy msgid "Preparing to copy selected packages to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 #, fuzzy msgid "dependency" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 #, fuzzy msgid "switching" msgstr "Opdaterer" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 #, fuzzy msgid "moving file" msgstr "Forkert fil type (%s)" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 #, fuzzy msgid "Injecting entropy metadata into built packages" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 #, fuzzy msgid "injecting entropy metadata" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 #, fuzzy msgid "injection complete" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 #, fuzzy msgid "removing package" msgstr "Sorterer Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 #, fuzzy msgid "Integrity verification of the selected packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 #, fuzzy msgid "All the packages in repository will be checked." msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 #, fuzzy msgid "This is the list of the packages that would be checked" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 #, fuzzy msgid "Working on mirror" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 #, fuzzy msgid "checking hash" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 #, fuzzy msgid "digest verification of" msgstr "_Beskrivelse" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 #, fuzzy msgid "This is the list of broken packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 #, fuzzy msgid "Mirror" msgstr "_Filspejlsliste" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 #, fuzzy msgid "Number of checked packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 #, fuzzy msgid "Number of healthy packages" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 #, fuzzy msgid "Number of broken packages" msgstr "Du er ved at slette %s pakker\n" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 #, fuzzy msgid "checking status of" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 #, fuzzy msgid "checked packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 #, fuzzy msgid "healthy packages" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 #, fuzzy msgid "broken packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 #, fuzzy msgid "downloaded packages" msgstr "Henter Pakker:" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 #, fuzzy msgid "failed downloads" msgstr "Navn på den nye profil" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "Behander pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 #, fuzzy msgid "available" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 #, fuzzy msgid "Starting to download missing files" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 #, fuzzy msgid "Binary packages downloaded successfully." msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 #, fuzzy msgid "These are the packages that cannot be found online" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 #, fuzzy msgid "Please setup your branch to" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 #, fuzzy msgid "and retry" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "I_nformation" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 #, fuzzy msgid "Switching packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 #, fuzzy msgid "Ignoring" msgstr "Installeret" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 #, fuzzy msgid "already in branch" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 #, fuzzy msgid "migration loop completed" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "Sletter som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 #, fuzzy msgid "Scanning package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 #, fuzzy msgid "not found anymore" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 #, fuzzy msgid "Packages string" msgstr "Pakker." -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 #, fuzzy msgid "Checking" msgstr "Henter : %s" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 #, fuzzy msgid "Running dependencies test" msgstr "Sletter som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 #, fuzzy msgid "Needed by" msgstr "behøvet af %s" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 #, fuzzy msgid "by repo" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 #, fuzzy msgid "Broken and matched packages list" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 #, fuzzy msgid "These are the matched packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 #, fuzzy msgid "No matched packages" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 #, fuzzy msgid "Your default repository is not initialized" msgstr "Tilgængelige" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 #, fuzzy msgid "Continuing with an uninitialized repository" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Filkilder" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Kører Transaktion" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Oprydning af alt Yum metadat" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Kilde" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 #, fuzzy msgid "adding package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 #, fuzzy msgid "added package" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 #, fuzzy msgid "rev" msgstr "Sletter" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 #, fuzzy msgid "manual dependencies for" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Installer som afhængighed" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 msgid "Do you agree?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1909,156 +1920,157 @@ msgstr "" msgid "Yes" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Behandler metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Indlæsning afsluttet" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 #, fuzzy msgid "Exception caught, closing tasks" msgstr "Søgnings Indstiller" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 #, fuzzy msgid "server-side repository" msgstr "Rediger Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 #, fuzzy msgid "community repository" msgstr "Kilde" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 #, fuzzy msgid "current branch" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 #, fuzzy msgid "Currently configured repositories" msgstr "Filkilder" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "Konfirmation af behandling af køen" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 #, fuzzy msgid "config files" msgstr "Oprettelse af %s profilen fejlede" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 #, fuzzy msgid "checking system" msgstr "Henter : %s" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 #, fuzzy msgid "there are configuration files not updated yet" msgstr "Oprettelse af %s profilen fejlede" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "Opdateret" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "Indstillinger" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "Sorterer Pakker" @@ -2148,8 +2160,7 @@ msgstr "Kilde" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Kilde" @@ -2592,7 +2603,7 @@ msgstr "Opdaterer" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 #, fuzzy msgid "packages" msgstr "Pakker." @@ -2661,16 +2672,8 @@ msgstr "Oprettelse af %s profilen fejlede" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -3060,7 +3063,7 @@ msgstr "Indlæsning afsluttet" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "" @@ -3382,89 +3385,89 @@ msgstr "_Beskrivelse" msgid "installing" msgstr "Installeret" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Sletter som afhængighed" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "Indstillinger" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "Indstillinger" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 #, fuzzy msgid "reason not available" msgstr "Tilgængelige" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 #, fuzzy msgid "user package.mask" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 #, fuzzy msgid "system keywords" msgstr "Kører Transaktion" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 #, fuzzy msgid "user package.unmask" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 #, fuzzy msgid "user repo package.keywords" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 #, fuzzy msgid "user package.keywords" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 #, fuzzy msgid "completely masked (by keyword?)" msgstr "Ingen valgte pakker" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 #, fuzzy msgid "repository general packages.db.mask" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 #, fuzzy msgid "repository general packages.db.keywords" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 #, fuzzy msgid "user license.mask" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 #, fuzzy msgid "user live unmask" msgstr "Fandt %d %s pakker" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 #, fuzzy msgid "user live mask" msgstr "Fandt %d %s pakker" @@ -3474,101 +3477,101 @@ msgstr "Fandt %d %s pakker" msgid "Entropy needs your attention" msgstr "" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 #, fuzzy msgid "Interrupted" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 #, fuzzy msgid "Selected number" msgstr "%s profilen er valgt" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 #, fuzzy msgid "Please select an option" msgstr "Vis Installerede Pakker" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 #, fuzzy msgid "Discard all" msgstr "Deaktiver udvidelser" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 #, fuzzy msgid "Confirm" msgstr "Oprettelse af %s profilen fejlede" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 #, fuzzy msgid "Add item" msgstr "Fi_ler" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Fi_ler" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 #, fuzzy msgid "Remove item" msgstr "Sletter" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 #, fuzzy msgid "Show current list" msgstr "Størrelse af filer som skal hentes" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "" -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 #, fuzzy msgid "Invalid action." msgstr "_Beskrivelse" -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Ingen pakker i køen" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 #, fuzzy msgid "Invalid string." msgstr "Kilde" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Ingen valgte pakker" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 #, fuzzy msgid "Invalid element." msgstr "Kilde" -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Ingen valgte pakker" @@ -3753,8 +3756,10 @@ msgstr "Filkilder" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 #, fuzzy @@ -3762,8 +3767,8 @@ msgid "Title" msgstr "_Filer" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 #, fuzzy @@ -3900,7 +3905,6 @@ msgstr "Konfirmation af behandling af køen" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 #, fuzzy msgid "Wrong parameters" msgstr "Fejl i test af pakke signaturer:\n" @@ -3959,7 +3963,7 @@ msgid "Error while creating package for" msgstr "Fejl i test af pakke signaturer:\n" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 #, fuzzy msgid "Cannot continue" msgstr "Ønsker du at forsættet ?" @@ -4105,7 +4109,7 @@ msgstr "Tilgængelige" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "" @@ -4117,7 +4121,7 @@ msgstr "" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "" @@ -4128,7 +4132,6 @@ msgstr "" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 #, fuzzy msgid "entries" msgstr "Filkilder" @@ -4162,8 +4165,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -4334,8 +4337,9 @@ msgstr "Vis Installerede Pakker" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 #, fuzzy msgid "No packages found" msgstr "Ingen pakker i køen" @@ -4402,7 +4406,7 @@ msgstr "Søgnings Indstiller" msgid "Package Set Search" msgstr "Pakke" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 #, fuzzy msgid "Tag Search" msgstr "Søgnings Indstiller" @@ -4490,7 +4494,7 @@ msgstr "Størrelse af filer som skal hentes" msgid "Checksum" msgstr "Henter : %s" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 #, fuzzy msgid "Dependencies" @@ -4612,7 +4616,7 @@ msgid "repository already enabled" msgstr "Slettet" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "Tilgængelige" @@ -4691,7 +4695,7 @@ msgstr "Søgnings Indstiller" msgid "never synced" msgstr "" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 #, fuzzy msgid "Status" @@ -4747,25 +4751,26 @@ msgstr "Ingen valgte pakker" msgid "Unhandled exception" msgstr "_Beskrivelse" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 #, fuzzy msgid "Notice board not available" msgstr "Tilgængelige" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 #, fuzzy msgid "Press Enter to continue" msgstr "Ønsker du at forsættet ?" @@ -4777,7 +4782,8 @@ msgstr "Ønsker du at forsættet ?" msgid "Exit" msgstr "Extra" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "" @@ -4788,7 +4794,7 @@ msgid "Notice board" msgstr "Henter Pakker:" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "" @@ -4811,8 +4817,7 @@ msgid "Type a number." msgstr "" #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 #, fuzzy msgid "Configuration file" msgstr "Oprettelse af %s profilen fejlede" @@ -4943,7 +4948,7 @@ msgid "Unique files that would be automerged" msgstr "Vis Installerede Pakker" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 #, fuzzy msgid "Invalid repository" msgstr "Kilde" @@ -4964,7 +4969,7 @@ msgstr "Konfirmation af behandling af køen" msgid "Please logout first" msgstr "Konfirmation af behandling af køen" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4973,7 +4978,7 @@ msgstr "Konfirmation af behandling af køen" msgid "Username" msgstr "Filnavn" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4981,7 +4986,7 @@ msgstr "Filnavn" msgid "Password" msgstr "" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4994,7 +4999,7 @@ msgstr "Konfirmation af behandling af køen" msgid "Login aborted. Not logged in." msgstr "Konfirmation af behandling af køen" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -5221,7 +5226,7 @@ msgid "Installed packages database not available" msgstr "Vis Installerede Pakker" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -5240,17 +5245,17 @@ msgstr "Kører Transaktion" msgid "No System Databases found" msgstr "Kører Transaktion" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 #, fuzzy msgid "No backed up databases found" msgstr "Ingen pakker i køen" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 #, fuzzy msgid "Select the database you want to restore" msgstr "Ingen valgte pakker" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 #, fuzzy msgid "Entropy installed packages database restore tool" msgstr "Vis Installerede Pakker" @@ -5554,30 +5559,25 @@ msgstr "" msgid "Go to hell." msgstr "" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 #, fuzzy msgid "Basic Options" msgstr "Søgnings Indstiller" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 #, fuzzy msgid "print version" msgstr "Sletter" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 msgid "force colorized output" msgstr "" @@ -5585,8 +5585,7 @@ msgstr "" msgid "print a bash completion script to stdout" msgstr "" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 #, fuzzy msgid "Application Options" msgstr "Søgnings Indstiller" @@ -5646,7 +5645,7 @@ msgstr "Filkilder" msgid "show respositories status" msgstr "Filkilder" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 #, fuzzy msgid "search packages in repositories" msgstr "Pakke Beskrivelser" @@ -5691,8 +5690,7 @@ msgstr "Vis Installerede Pakker" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "" @@ -5701,8 +5699,7 @@ msgstr "" msgid "just download packages" msgstr "Henter Pakker:" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "" @@ -5894,7 +5891,7 @@ msgstr "Du er ved at slette %s pakker\n" msgid "configure one or more installed packages" msgstr "Vis Installerede Pakker" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 #, fuzzy msgid "look for unsatisfied dependencies" msgstr "Sletter som afhængighed" @@ -5912,7 +5909,7 @@ msgstr "Pakke Beskrivelser" msgid "look for missing libraries" msgstr "" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5944,7 +5941,7 @@ msgstr "Kilde" msgid "search from what package a file belongs" msgstr "" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 #, fuzzy msgid "show packages changelog" msgstr "Ingen valgte pakker" @@ -5954,14 +5951,12 @@ msgstr "Ingen valgte pakker" msgid "search what packages depend on the provided atoms" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 #, fuzzy msgid "search packages by description" msgstr "Pakke Beskrivelser" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "" @@ -6008,8 +6003,7 @@ msgstr "Vis Installerede Pakker" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" @@ -6027,8 +6021,7 @@ msgstr "Ingen valgte pakker" msgid "show atoms needing the provided libraries" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 #, fuzzy msgid "search available package sets" msgstr "Vis Tilgængelige Pakker" @@ -6043,27 +6036,24 @@ msgstr "Ingen valgte pakker" msgid "show packages owning the provided tags" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "" @@ -6143,7 +6133,7 @@ msgid "" "generate installed packages database using files on the system [last hope]" msgstr "" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -6162,543 +6152,168 @@ msgid "restore a previously backed up Entropy installed packages database" msgstr "Vis Installerede Pakker" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "" - -#: ../../client/equo.py:266 -#, fuzzy -msgid "community repositories management functions" -msgstr "Filkilder" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -#, fuzzy -msgid "repackage the specified atoms" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -#, fuzzy -msgid "manage only the specified atoms" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" - -#: ../../client/equo.py:274 -#, fuzzy -msgid "community repositories mirrors management functions" -msgstr "Filkilder" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -#, fuzzy -msgid "sync all the configured repositories" -msgstr "Filkilder" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -#, fuzzy -msgid "also verify packages integrity" -msgstr "fandt %d pakker, som matcher : %s" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -#, fuzzy -msgid "sync the current repository database across primary mirrors" -msgstr "Kilde" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -#, fuzzy -msgid "lock the current repository database (server-side)" -msgstr "Kilde" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -#, fuzzy -msgid "unlock the current repository database (server-side)" -msgstr "Kilde" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -#, fuzzy -msgid "lock the current repository database (client-side)" -msgstr "Kilde" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -#, fuzzy -msgid "unlock the current repository database (client-side)" -msgstr "Kilde" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -#, fuzzy -msgid "show current lock status" -msgstr "Størrelse af filer som skal hentes" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Vis Tilgængelige Pakker" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -#, fuzzy -msgid "manage a repository" -msgstr "Kilde" - -#: ../../client/equo.py:298 -#, fuzzy -msgid "(re)initialize the current repository database" -msgstr "Kilde" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" - -#: ../../client/equo.py:300 -#, fuzzy -msgid "(re)create the database for the specified repository" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -#, fuzzy -msgid "manually force a revision bump for the current repository database" -msgstr "Kilde" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -#, fuzzy -msgid "synchronize the database" -msgstr "Kører Transaktion" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -#, fuzzy -msgid "remove the provided atoms from the current repository database" -msgstr "Kilde" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -#, fuzzy -msgid "create an empty repository database in the provided path" -msgstr "Kilde" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -#, fuzzy -msgid "backup current repository database" -msgstr "Kilde" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -#, fuzzy -msgid "restore a previously backed-up repository database" -msgstr "Vis Installerede Pakker" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -#, fuzzy -msgid "enable the specified repository" -msgstr "Kilde" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -#, fuzzy -msgid "disable the specified repository" -msgstr "Kilde" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Vis Installerede Pakker" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "Installer som afhængighed" - -#: ../../client/equo.py:318 -#, fuzzy -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "Kilde" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -#, fuzzy -msgid "pulls dependencies in" -msgstr "Indstillinger" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -#, fuzzy -msgid "set the default repository" -msgstr "Rediger Filkilder" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "Filkilder" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Filkilder" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "Kilde" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Kilde" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Kilde" - -#: ../../client/equo.py:338 -#, fuzzy -msgid "do some searches into community repository databases" -msgstr "Kilde" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -#, fuzzy -msgid "show what packages depend on the provided atoms" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -#, fuzzy -msgid "list all the packages in the default repository" -msgstr "Rediger Filkilder" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -#, fuzzy -msgid "search packages inside the default repository database" -msgstr "Kilde" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -#, fuzzy -msgid "show packages owning the specified tags" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -#, fuzzy -msgid "source package manager functions" -msgstr "Filkilder" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -#, fuzzy -msgid "compilation function" -msgstr "Søgnings Indstiller" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -#, fuzzy -msgid "compile packages belonging to the provided categories" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -#, fuzzy -msgid "just list packages" -msgstr "Henter Pakker:" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -#, fuzzy -msgid "do not pull old package slots" -msgstr "Henter Pakker:" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -#, fuzzy -msgid "compile packages in provided package set names" -msgstr "Ingen valgte pakker" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -#, fuzzy -msgid "run database update if all went fine" -msgstr "Indlæsning afsluttet" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -#, fuzzy -msgid "notice board handling functions" -msgstr "Filkilder" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "" - -#: ../../client/equo.py:376 -#, fuzzy -msgid "look for unsatisfied dependencies across community repositories" -msgstr "Sletter som afhængighed" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 #, fuzzy msgid "login against a specified repository" msgstr "Kilde" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 #, fuzzy msgid "logout from a specified repository" msgstr "Kilde" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 #, fuzzy msgid "force action" msgstr "Søgnings Indstiller" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 #, fuzzy msgid "" "manage package documents for the selected repository (comments, files, " "videos)" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 #, fuzzy msgid "manage package votes for the selected repository" msgstr "Ingen valgte pakker" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 #, fuzzy msgid "handles Entropy cache" msgstr "Sorterer Pakker" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 #, fuzzy msgid "clean Entropy cache" msgstr "Sorterer Pakker" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 #, fuzzy msgid "show system information" msgstr "Filkilder" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 #, fuzzy msgid "not enough parameters" msgstr "Fejl i test af pakke signaturer:\n" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." msgstr "" -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "" -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " "logged)" msgstr "" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" msgstr "" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." msgstr "" -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6707,7 +6322,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 #, fuzzy msgid "Nothing to do" msgstr "Ingen pakker i køen" @@ -6872,10 +6486,7 @@ msgstr "Filkilder" msgid "atom" msgstr "Fi_ler" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "" @@ -6905,6 +6516,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Vis Installerede Pakker" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 #, fuzzy msgid "These are the packages that would be removed" @@ -7168,7 +6780,7 @@ msgstr "Indlæsning afsluttet" msgid "These are the packages that would be masked" msgstr "Vis Installerede Pakker" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "Vis Tilgængelige Pakker" @@ -7212,8 +6824,7 @@ msgstr "Sletter som afhængighed" msgid "Would you like to calculate dependencies ?" msgstr "Vis Tilgængelige Pakker" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "" @@ -7266,7 +6877,10 @@ msgstr "" msgid "Libraries/Executables statistics" msgstr "" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 #, fuzzy msgid "Not matched" msgstr "Vis Installerede Pakker" @@ -7275,803 +6889,1048 @@ msgstr "Vis Installerede Pakker" msgid "Would you like to install them ?" msgstr "" -#: ../../server/reagent.py:42 -#, fuzzy -msgid "show current repositories status" -msgstr "Filkilder" - -#: ../../server/reagent.py:53 -#, fuzzy -msgid "do some searches into repository databases" -msgstr "Kilde" - -#: ../../server/reagent.py:55 -#, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "Kilde" - -#: ../../server/reagent.py:72 -#, fuzzy -msgid "(re)initialize the current repository" -msgstr "Kilde" - -#: ../../server/reagent.py:77 -#, fuzzy -msgid "do not include reverse dependencies" -msgstr "Opdater som afhængighed" - -#: ../../server/reagent.py:80 -#, fuzzy -msgid "switch to the specified branch the repository" -msgstr "Kilde" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" msgstr "" -#: ../../server/reagent.py:89 +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "mask given package in given repository" -msgstr "Behander pakker i køen" - -#: ../../server/reagent.py:90 -#, fuzzy -msgid "unmask given packages in given repository" -msgstr "Behander pakker i køen" - -#: ../../server/reagent.py:116 -#, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "Vis Installerede Pakker" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" +msgid "available tests" msgstr "Tilgængelige" -#: ../../server/reagent.py:120 -msgid "look for missing libraries (scan system)" -msgstr "" - -#: ../../server/reagent.py:122 -msgid "look for missing libraries (scan repository metadata)" -msgstr "" - -#: ../../server/reagent.py:125 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "remove downloaded packages and clean temp. directories)" -msgstr "Henter Pakker:" +msgid "dependencies test" +msgstr "Indstillinger" -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "" - -#: ../../server/server_activator.py:344 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "Notice text" -msgstr "Installeret" +msgid "libraries test" +msgstr "behøvet af %s" -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "" - -#: ../../server/server_activator.py:392 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "Choose the one you want to remove" -msgstr "Ingen valgte pakker" - -#: ../../server/server_activator.py:398 -#, fuzzy -msgid "Are you sure you want to remove this?" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_activator.py:450 -#, fuzzy -msgid "Starting to lock mirrors databases" -msgstr "Kilde" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Indlæsning afsluttet" - -#: ../../server/server_activator.py:464 -#, fuzzy -msgid "Starting to unlock mirrors databases" -msgstr "Kilde" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Indlæsning afsluttet" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:488 -#, fuzzy -msgid "Download mirrors lock complete" -msgstr "Indlæsning afsluttet" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:503 -#, fuzzy -msgid "Download mirrors unlock complete" -msgstr "Indlæsning afsluttet" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "Kilde" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." +msgid "dump results to file" msgstr "Filkilder" -#: ../../server/server_activator.py:588 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Vis Tilgængelige Pakker" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" - -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -#, fuzzy -msgid "Remote Entropy Repository Status" +msgid "library linking test (using repository metadata)" msgstr "Kilde" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -#, fuzzy -msgid "Revision" -msgstr "Filkilde" - -#: ../../server/server_activator.py:615 -#, fuzzy -msgid "Local revision currently at" -msgstr "Indlæsning afsluttet" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Pakker" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "fandt %d pakker, som matcher : %s" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "package repositories handling functions" -msgstr "Filkilder" +msgid "verify remote packages integrity" +msgstr "fandt %d pakker, som matcher : %s" -#: ../../server/activator.py:55 -#, fuzzy -msgid "sync package repositories across primary mirrors" -msgstr "Kilde" - -#: ../../server/activator.py:61 -#, fuzzy -msgid "repository handling functions" -msgstr "Filkilder" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 -#, fuzzy -msgid "Importing keypair for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:125 -#, fuzzy -msgid "Another keypair already exists for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:55 +msgid "execute query" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "" - -#: ../../server/server_key.py:155 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Exporting private key for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "Rediger Filkilder" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Rediger Filkilder" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Filkilder" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "Kilde" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" -msgstr "Kilde" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -#, fuzzy -msgid "Keys metadata not available for" +msgid "available queries" msgstr "Tilgængelige" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "Fandt %d %s pakker" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "GPG information for repository" -msgstr "Behander pakker i køen" - -#: ../../server/server_key.py:375 -#, fuzzy -msgid "Public key identifier" -msgstr "Filkilder" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -#, fuzzy -msgid "Creation date" -msgstr "Slettet" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -#, fuzzy -msgid "no package specified." -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:84 -#, fuzzy -msgid "Enabling" -msgstr "Installerer" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -#, fuzzy -msgid "Enabled" -msgstr "_Valgt" - -#: ../../server/server_reagent.py:94 -#, fuzzy -msgid "already enabled" -msgstr "Slettet" - -#: ../../server/server_reagent.py:102 -#, fuzzy -msgid "Disabling" -msgstr "Installeret" - -#: ../../server/server_reagent.py:106 -#, fuzzy -msgid "Disabled" -msgstr "Installeret" - -#: ../../server/server_reagent.py:111 -#, fuzzy -msgid "already disabled" -msgstr "Slettet" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -#, fuzzy -msgid "Invalid syntax." +msgid "query into given repository only" msgstr "Kilde" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "No valid repository specified." -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -#, fuzzy -msgid "Cannot match" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -#, fuzzy -msgid "No packages selected." -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:235 -#, fuzzy -msgid "package dependencies" -msgstr "Installer som afhængighed" - -#: ../../server/server_reagent.py:244 -#, fuzzy -msgid "No dependencies" -msgstr "Indstillinger" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Indstillinger" - -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "Indstillinger" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Indstillinger" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Oprettelse af %s profilen fejlede" - -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "Installer som afhængighed" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Pakker." - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Søgnings Indstiller" - -#: ../../server/server_reagent.py:436 -#, fuzzy -msgid "Matching packages to remove" -msgstr "Behandler pakker for %s" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -#, fuzzy -msgid "Not enough parameters" -msgstr "Fejl i test af pakke signaturer:\n" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -#, fuzzy -msgid "These are the packages that would be removed from the database" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -#, fuzzy -msgid "Removing selected packages" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" - -#: ../../server/server_reagent.py:485 -#, fuzzy -msgid "Searching injected packages to remove" -msgstr "Behandler pakker for %s" - -#: ../../server/server_reagent.py:511 -#, fuzzy -msgid "These are the injected packages pulled in for removal" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" - -#: ../../server/server_reagent.py:544 -#, fuzzy -msgid "Collecting packages that would be marked" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:553 -#, fuzzy -msgid "These are the packages that would be marked" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:688 -#, fuzzy -msgid "No valid repositories specified." -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:693 -#, fuzzy -msgid "Invalid repositories specified." -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:738 -#, fuzzy -msgid "Entropy repository has been initialized" -msgstr "Tilgængelige" - -#: ../../server/server_reagent.py:748 -#, fuzzy -msgid "Creating empty database to" -msgstr "Kører Transaktion" - -#: ../../server/server_reagent.py:751 -#, fuzzy -msgid "Cannot overwrite already existing file" -msgstr "Navn på den nye profil" - -#: ../../server/server_reagent.py:776 -#, fuzzy -msgid "Bumping Repository database" -msgstr "Kilde" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -#, fuzzy -msgid "No valid packages to repackage." -msgstr "Ingen valgte pakker" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -#, fuzzy -msgid "Scanning database for differences" -msgstr "Kører Transaktion" - -#: ../../server/server_reagent.py:921 -#, fuzzy -msgid "Invalid atom" -msgstr "_Beskrivelse" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -#, fuzzy -msgid "Zarro thinggz totoo" -msgstr "Ingen pakker i køen" - -#: ../../server/server_reagent.py:932 -#, fuzzy -msgid "These are the packages that would be changed to injected status" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:938 -#, fuzzy -msgid "Would you like to transform them now ?" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:945 -#, fuzzy -msgid "Transforming from database" -msgstr "Kilde" - -#: ../../server/server_reagent.py:947 -#, fuzzy -msgid "Database transform complete" -msgstr "Indlæsning af pakker afsluttet" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "" - -#: ../../server/server_reagent.py:960 -#, fuzzy -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -#, fuzzy -msgid "Remove this package?" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:989 -#, fuzzy -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Ingen valgte pakker" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -#, fuzzy -msgid "Add this package?" -msgstr "Henter Pakker:" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Vis Installerede Pakker" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -#, fuzzy -msgid "warning" -msgstr "Søgnings Indstiller" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -#, fuzzy -msgid "Would you like to package them now ?" -msgstr "Vis Tilgængelige Pakker" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -#, fuzzy -msgid "inside" +msgid "tag name" msgstr "Filnavn" -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Compressing packages" -msgstr "Sorterer Pakker" +msgid "show libraries (.so) required by matched packages" +msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "Nothing to do, check later." +msgid "include build dependencies" +msgstr "Opdater som afhængighed" + +#: ../../server/eit/commands/query.py:102 +#, fuzzy +msgid "search through package sets" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" + +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Pakker" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Filkilder" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" msgstr "Ingen pakker i køen" -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "behøvet af %s" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "Ingen pakker i køen" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Ingen pakker i køen" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "Pakker Til Opdatering" + +#: ../../server/eit/commands/status.py:84 #, fuzzy msgid "local revision" msgstr "Størrelse af filer som skal hentes" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 #, fuzzy msgid "stored packages" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "Henter Pakker:" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "Opdateret" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "Opdaterer" -#: ../../server/server_reagent.py:1258 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" +msgid "show repository status" +msgstr "Filkilder" + +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1310 +#: ../../server/eit/commands/list.py:59 #, fuzzy -msgid "No package sets found" -msgstr "Ingen pakker i køen" +msgid "only list injected packages" +msgstr "Vis Installerede Pakker" -#: ../../server/server_reagent.py:1318 +#: ../../server/eit/commands/list.py:80 #, fuzzy -msgid "package set not found" -msgstr "Ingen pakker i køen" +msgid "not available" +msgstr "Tilgængelige" -#: ../../server/server_query.py:53 ../../server/server_query.py:77 +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "Pakker." + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/init.py:59 +#, fuzzy +msgid "Entropy repository has been initialized" +msgstr "Tilgængelige" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Kilde" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Kilde" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "Installer som afhængighed" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Pakker" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 #: ../../sulfur/src/sulfur/packages.py:1135 #, fuzzy msgid "Nothing found" msgstr "Ingen pakker i køen" -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/reset.py:52 #, fuzzy -msgid "show repository status" +msgid "do not pull the remote repository" +msgstr "Kilde" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "Du er ved at slette %s pakker\n" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" msgstr "Filkilder" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "Filkilder" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "Kilde" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Filkilder" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Filkilder" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Filkilder" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Rediger Filkilder" + +#: ../../server/eit/commands/push.py:146 +#, fuzzy +msgid "Commit message" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/push.py:148 +msgid "Enter the commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Kilde" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Sletter" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "Opdateret" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "I_nformation" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Sletter" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Sletter" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Henter Pakker:" + +#: ../../server/eit/commands/notice.py:164 +msgid "no URL" +msgstr "" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "GUI" + +#: ../../server/eit/commands/notice.py:240 +#, fuzzy +msgid "Choose the one you want to remove" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/notice.py:248 +#, fuzzy +msgid "Are you sure you want to remove this?" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Filkilder" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "Kilde" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Filkilder" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "Kilde" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Vis Installerede Pakker" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +#, fuzzy +msgid "Cannot match" +msgstr "Vis Installerede Pakker" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +#, fuzzy +msgid "No valid packages to repackage." +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/commit.py:121 +#, fuzzy +msgid "Scanning database for differences" +msgstr "Kører Transaktion" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "_Beskrivelse" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Ingen pakker i køen" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "Installeret" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Kilde" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Indlæsning af pakker afsluttet" +msgid "Action completed" +msgstr "Indlæsning afsluttet" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Ingen valgte pakker" +msgid "Select packages for removal" +msgstr "Behandler pakker for %s" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +#, fuzzy +msgid "Remove this package?" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Kilde" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" +msgid "Select packages to add" msgstr "Ingen valgte pakker" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +#, fuzzy +msgid "Add this package?" +msgstr "Henter Pakker:" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Vis Installerede Pakker" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +#, fuzzy +msgid "warning" +msgstr "Søgnings Indstiller" + +#: ../../server/eit/commands/commit.py:304 +#, fuzzy +msgid "Would you like to package them now ?" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/commit.py:305 +#, fuzzy +msgid "inside" +msgstr "Filnavn" + +#: ../../server/eit/commands/commit.py:318 +#, fuzzy +msgid "Compressing packages" +msgstr "Sorterer Pakker" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "" + +#: ../../server/eit/commands/commit.py:339 +#, fuzzy +msgid "Nothing to do, check later." +msgstr "Ingen pakker i køen" + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Vis Installerede Pakker" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "Tilgængelige" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Filkilder" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "Filkilder" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "Kilde" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Kilde" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "Størrelse af filer som skal hentes" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "_Filspejlsliste" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Filkilder" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Kilde" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "Kilde" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "Ingen valgte pakker" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/vacuum.py:74 +msgid "Users with old repositories will need to update" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "Ingen pakker i køen" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "Kilde" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "Opdater som afhængighed" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "Vis Tilgængelige Pakker" + +#: ../../server/eit/commands/deps.py:81 +#, fuzzy +msgid "package dependencies" +msgstr "Installer som afhængighed" + +#: ../../server/eit/commands/deps.py:96 +#, fuzzy +msgid "No dependencies" +msgstr "Indstillinger" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Indstillinger" + +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "Indstillinger" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Indstillinger" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Oprettelse af %s profilen fejlede" + +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "Installer som afhængighed" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "Installer som afhængighed" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "I_nformation" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "--> Behandler Afhængighed: %s for pakke: %s" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "Søgnings Indstiller" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Filkilder" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Filkilder" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "Rediger Filkilder" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Rediger Filkilder" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Filkilder" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "Tilgængelige" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "Behander pakker i køen" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Filkilder" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +#, fuzzy +msgid "Creation date" +msgstr "Slettet" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Vis Installerede Pakker" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Kilde" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "Kilde" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Pakker" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Ønsker du at forsættet ?" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "Installeret" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "_Beskrivelse" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "Pakke Beskrivelser" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Indlæsning afsluttet" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "Arkitektur" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "_Beskrivelse" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "Kilde" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Kilde" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -8137,131 +7996,138 @@ msgstr "Vis Installerede Pakker" msgid "Application" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 msgid "Successfully logged in." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "Installeret" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 #, fuzzy msgid "Vote registered successfully" msgstr "Indlæsning afsluttet" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 #, fuzzy msgid "Error registering vote" msgstr "Fejl i test af pakke signaturer:\n" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Sletter" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 #, fuzzy msgid "Applications" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "Behandling af pakker afsluttet" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 #, fuzzy msgid "Destination" msgstr "_Beskrivelse" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 #, fuzzy msgid "Rev." msgstr "Filkilde." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Installer som afhængighed" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Filkilder" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 #, fuzzy msgid "No advisories" msgstr "Fejl i Hentning af pakker:\n" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Filnavn" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "Rediger Filkilder" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 #, fuzzy msgid "Active" msgstr "Søgnings Indstiller" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 #, fuzzy msgid "Update" msgstr "Opdateret" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +#, fuzzy +msgid "Revision" +msgstr "Filkilde" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 #, fuzzy msgid "Repository Identifier" msgstr "Filkilder" @@ -8700,6 +8566,11 @@ msgstr "Ingen valgte pakker" msgid "Masked package" msgstr "Vis Installerede Pakker" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +#, fuzzy +msgid "Enabled" +msgstr "_Valgt" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "" @@ -11010,8 +10881,414 @@ msgid "_Load Package Manager" msgstr "Pakker" #, fuzzy -#~ msgid "reset error" -#~ msgstr "Du er ved at slette %s pakker\n" +#~ msgid "community repositories management functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "repackage the specified atoms" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "manage only the specified atoms" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "community repositories mirrors management functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "sync all the configured repositories" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Vis Tilgængelige Pakker" + +#, fuzzy +#~ msgid "(re)initialize the current repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "synchronize the database" +#~ msgstr "Kører Transaktion" + +#, fuzzy +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "backup current repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "enable the specified repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "disable the specified repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "handle packages dependencies" +#~ msgstr "Installer som afhængighed" + +#, fuzzy +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "pulls dependencies in" +#~ msgstr "Indstillinger" + +#, fuzzy +#~ msgid "set the default repository" +#~ msgstr "Rediger Filkilder" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "do some searches into community repository databases" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "list all the packages in the default repository" +#~ msgstr "Rediger Filkilder" + +#, fuzzy +#~ msgid "search packages inside the default repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "show packages owning the specified tags" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "source package manager functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "compilation function" +#~ msgstr "Søgnings Indstiller" + +#, fuzzy +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "just list packages" +#~ msgstr "Henter Pakker:" + +#, fuzzy +#~ msgid "do not pull old package slots" +#~ msgstr "Henter Pakker:" + +#, fuzzy +#~ msgid "compile packages in provided package set names" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "run database update if all went fine" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "notice board handling functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "Sletter som afhængighed" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "do some searches into repository databases" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "switch to the specified branch the repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "Behander pakker i køen" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "Behander pakker i køen" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "Tilgængelige" + +#, fuzzy +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "Henter Pakker:" + +#, fuzzy +#~ msgid "Notice text" +#~ msgstr "Installeret" + +#, fuzzy +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "Download mirrors lock complete" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Indlæsning afsluttet" + +#, fuzzy +#~ msgid "package repositories handling functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "Filkilder" + +#, fuzzy +#~ msgid "no package specified." +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "Enabling" +#~ msgstr "Installerer" + +#, fuzzy +#~ msgid "already enabled" +#~ msgstr "Slettet" + +#, fuzzy +#~ msgid "Disabling" +#~ msgstr "Installeret" + +#, fuzzy +#~ msgid "Disabled" +#~ msgstr "Installeret" + +#, fuzzy +#~ msgid "already disabled" +#~ msgstr "Slettet" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Pakker." + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Søgnings Indstiller" + +#, fuzzy +#~ msgid "Matching packages to remove" +#~ msgstr "Behandler pakker for %s" + +#, fuzzy +#~ msgid "Not enough parameters" +#~ msgstr "Fejl i test af pakke signaturer:\n" + +#, fuzzy +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "Removing selected packages" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "These are the packages that would be marked" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "No valid repositories specified." +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "Invalid repositories specified." +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "Creating empty database to" +#~ msgstr "Kører Transaktion" + +#, fuzzy +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Navn på den nye profil" + +#, fuzzy +#~ msgid "Bumping Repository database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "Transforming from database" +#~ msgstr "Kilde" + +#, fuzzy +#~ msgid "Database transform complete" +#~ msgstr "Indlæsning af pakker afsluttet" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Vis Installerede Pakker" + +#, fuzzy +#~ msgid "No package sets found" +#~ msgstr "Ingen pakker i køen" + +#, fuzzy +#~ msgid "package set not found" +#~ msgstr "Ingen pakker i køen" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Indlæsning af pakker afsluttet" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Ingen valgte pakker" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Ingen valgte pakker" #, fuzzy #~ msgid "Entropy locked during lock acquire" @@ -11137,10 +11414,6 @@ msgstr "Pakker" #~ msgid "empty username" #~ msgstr "Kilde" -#, fuzzy -#~ msgid "user not found" -#~ msgstr "Ingen pakker i køen" - #, fuzzy #~ msgid "user inactive" #~ msgstr "Søgnings Indstiller" @@ -11193,10 +11466,6 @@ msgstr "Pakker" #~ msgid "Cannot write to cache file" #~ msgstr "Navn på den nye profil" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "Kilde" - #, fuzzy #~ msgid "EAPI3 Service" #~ msgstr "Filkilder" @@ -11423,10 +11692,6 @@ msgstr "Pakker" #~ "specified repository" #~ msgstr "Ingen valgte pakker" -#, fuzzy -#~ msgid "Move or copy a package from a repository to another" -#~ msgstr "Pakke Beskrivelser" - #, fuzzy #~ msgid "Package identifiers" #~ msgstr "Filkilder" @@ -11435,10 +11700,6 @@ msgstr "Pakker" #~ msgid "From repository" #~ msgstr "Kilde" -#, fuzzy -#~ msgid "To repository" -#~ msgstr "Kilde" - #, fuzzy #~ msgid "Run Entropy database updates" #~ msgstr "Filkilder" @@ -11475,22 +11736,10 @@ msgstr "Pakker" #~ msgid "Check mode" #~ msgstr "Henter : %s" -#, fuzzy -#~ msgid "Get repository notice board" -#~ msgstr "Filkilder" - -#, fuzzy -#~ msgid "Remove notice board entry" -#~ msgstr "Sletter" - #, fuzzy #~ msgid "Entry Identifiers" #~ msgstr "Filkilder" -#, fuzzy -#~ msgid "Add notice board entry" -#~ msgstr "Sletter" - #, fuzzy #~ msgid "Notice link" #~ msgstr "Installeret" @@ -11786,10 +12035,6 @@ msgstr "Pakker" #~ msgid "No valid repositories" #~ msgstr "Ingen valgte pakker" -#, fuzzy -#~ msgid "not available" -#~ msgstr "Tilgængelige" - #, fuzzy #~ msgid "showing" #~ msgstr "Sletter" @@ -11850,10 +12095,6 @@ msgstr "Pakker" #~ msgid "Connection Error" #~ msgstr "Ønsker du at forsættet ?" -#, fuzzy -#~ msgid "Destination repository" -#~ msgstr "Kilde" - #, fuzzy #~ msgid "Copy/move packages" #~ msgstr "Vis Installerede Pakker" @@ -11898,10 +12139,6 @@ msgstr "Pakker" #~ msgid "Notice title" #~ msgstr "Installeret" -#, fuzzy -#~ msgid "Server" -#~ msgstr "Filkilder" - #, fuzzy #~ msgid "current revision" #~ msgstr "Filkilder" @@ -11978,10 +12215,6 @@ msgstr "Pakker" #~ msgid "Eclass" #~ msgstr "Ekskludering" -#, fuzzy -#~ msgid "Choose the repository" -#~ msgstr "Rediger Filkilder" - #, fuzzy #~ msgid "Choose the repositories you want to scan" #~ msgstr "Ingen valgte pakker" @@ -11994,10 +12227,6 @@ msgstr "Pakker" #~ msgid "Choose what notice board you want to see" #~ msgstr "Ingen valgte pakker" -#, fuzzy -#~ msgid "Update Repositories" -#~ msgstr "Filkilder" - #, fuzzy #~ msgid "or the" #~ msgstr "Vis Installerede Pakker" @@ -12050,10 +12279,6 @@ msgstr "Pakker" #~ msgid "Package key" #~ msgstr "Pakker" -#, fuzzy -#~ msgid "Cannot setup cache directory" -#~ msgstr "Ønsker du at forsættet ?" - #, fuzzy #~ msgid "Scanning hard disk" #~ msgstr "Vis Installerede Pakker" @@ -12142,10 +12367,6 @@ msgstr "Pakker" #~ msgid "Downloading packages system mask" #~ msgstr "Henter Pakker:" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Kilde" - #, fuzzy #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Sorterer Pakker" @@ -12182,10 +12403,6 @@ msgstr "Pakker" #~ msgid "cannot open Spm id file for" #~ msgstr "Ingen pakker i køen" -#, fuzzy -#~ msgid "file not found" -#~ msgstr "Ingen pakker i køen" - #, fuzzy #~ msgid "invalid checksum" #~ msgstr "Størrelse af filer som skal hentes" @@ -12412,10 +12629,6 @@ msgstr "Pakker" #~ msgid "Spritz Package Manager" #~ msgstr "Pakker" -#, fuzzy -#~ msgid "Compilation messages" -#~ msgstr "Ingen valgte pakker" - #, fuzzy #~ msgid "This is the list of the dependencies that would be included" #~ msgstr "Vis Installerede Pakker" @@ -12596,9 +12809,6 @@ msgstr "Pakker" #~ msgid "--> Finished Dependency Resolution" #~ msgstr "--> Afsluttet afhænigheds opløsning" -#~ msgid "--> Processing Dependency: %s for package: %s" -#~ msgstr "--> Behandler Afhængighed: %s for pakke: %s" - #~ msgid "--> Unresolved Dependency: %s" #~ msgstr "--> Ikke fundet afhængighed: %s" diff --git a/misc/po/de.po b/misc/po/de.po index 67cc9a201..f83b5bb43 100644 --- a/misc/po/de.po +++ b/misc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-02-02 14:36+0100\n" "Last-Translator: Tobias Rosenberger \n" "Language-Team: \n" @@ -18,36 +18,36 @@ msgstr "" "X-Poedit-Language: German\n" "X-Poedit-Country: GERMANY\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchronisiere aktuelle Datenbank" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "bitte warten" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Entferne Eintrag" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Füge Eintrag hinzu" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Exportiere Datenbank-Tabelle" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Datenbank-Export vollständig." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,19 +56,19 @@ msgstr "Datenbank-Export vollständig." msgid "ATTENTION" msgstr "ACHTUNG" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "SPM Fehler aufgetreten" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "einzigartiger SPM Bezeichner nicht gefunden für" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "aktualisiere Repositoriums Metadaten-Anordnung, bitte warten!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "generiere provided_libs Metadaten, bitte warten!" @@ -245,16 +245,16 @@ msgstr "Neuladen der Portage-Module" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "Fehler" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "nicht gefunden" @@ -303,7 +303,7 @@ msgstr "Kann SPM Einstellungsphase nicht ausführen für" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Kann von SPM installierte pkg-Dateien nicht aktualisieren" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -399,7 +399,7 @@ msgstr " # " #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "existiert nicht" @@ -439,7 +439,7 @@ msgid "Error calculating dependencies" msgstr "Fehler beim Berechnen der Abhängigkeiten" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "nicht unterstützt" @@ -501,461 +501,461 @@ msgstr "verbinde mit Spiegelserver" msgid "setting directory to" msgstr "ändere Verzeichnis in" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Entropy Spiegelserver-Schnittstelle geladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "Repositoriums-Spiegelserver" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "Paket-Spiegelserver" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "halte Ausschau nach Datei auf Spiegelserver" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "entsperre" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "sperre" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "Spiegelserver" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "Spiegelserver bereits gesperrt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "Spiegelserver bereits freigegeben" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "Spiegelserver für Download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "Spiegelserver bereits gesperrt für Download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "Spiegel bereits freigegeben für Download" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "für Download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "Spiegelserver erfolgreich gesperrt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "Spiegelserver nicht gesperrt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "Spiegelserver erfolgreich freigegeben" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "Freigabefehler" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "Spiegelserver nicht freigegeben" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "verbinde um Paket herunterzuladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "lade Paket herunter" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "Paket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "ist nicht im aktuellen Repositorium enthalten!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "verifiziere Prüfsumme des Pakets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "erfolgreich heruntergeladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "Prüfsumme stimmt nicht überein. Erneuter Download..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" "scheint fehlerhaft zu sein. Ziehe in Erwägung, es neu zu bauen. Ich gebe auf!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "Spiegelserver hat keine gültige Repositoriums-Revisionsdatei" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "vermag nicht Repositoriums-Revision herunterzuladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "Spiegelserver besitzt keine gültige Revisionsdatei" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "warte noch 2 Minuten bevor ich aufgebe" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "Spiegelserver freigegeben" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Lokale Statistik" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "Upload-Verzeichnis" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "Dateien bereit" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "Paketverzeichnis" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "Upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "herunterladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "kopiere" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "entfernen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Pakete zum entfernen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Pakete die lokal verschoben werden" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Pakete zum hochladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Gesamtgröße entfernbarer Dateien" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Gesamtgröße des Uploads" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Gesamtgröße des Downloads" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Enfernte Statistiken für" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "entfernte Pakete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "Dateien gespeichert" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Berechne Warteschlangen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "entferne Paket+Hash" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "synchronisieren" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "Entfernen vollständig" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "kopiere Datei+Hash ins Repositorium" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "Fehler beim Hochladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "Grund" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "Upload erfolgreich abgeschlossen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "Fehler beim Herunterladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "Download erfolgreich abgeschlossen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA überprüft Paketdatei" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "fehlerhafte Paketdate, bitte verbessern" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "starte Paket-Synchronisierung" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "Paket-Synchronisierung" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "Sockel-Fehler" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "an" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "nichts zu tun an" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Erweitere Warteschlangen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "nichts zu synchronisieren" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Möchtest du die oben genannten Schritte durchführen?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nein" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "Unterbrechung durch Tastendruck!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "du mußt sie neu packen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "Ausnahmefehler aufgetreten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "wenigstens ein Spiegelserver wurde erfolgreich synchronisiert!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "sauber" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "sammle abgelaufene Pakete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "sammle abgelaufene Pakete im ausgewählten Zweig" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "in diesem Zweig gibt es nichts zu entfernen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "dies sind die abgelaufenen Pakete" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Würdest du gerne fortfahren ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "entferne entfernte Pakete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "entferne Fehler" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "entferne Pakete lokal" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "entfernt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "lade Schwarzes Brett vom Spiegelserver nach" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "Schwarzes Brett erfolgreich herabgeladen von" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "entferne Schwarzes Brett von" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "Entfernung des Schwarzen Bretts fehlgeschlagen bei" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "Entfernung des Schwarzen Bretts erfolgreich" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "lade Schwarzes Brett hoch von" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "Hochladen des Notizbretts fehlgeschlagen bei" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "Notizbrett erfolgreich hochgeladen" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "Schlüssel für das Repositorium ist abgelaufen" @@ -968,8 +968,8 @@ msgid "download path" msgstr "Download-Pfad" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "Fehler" @@ -977,268 +977,280 @@ msgstr "Fehler" msgid "failed to download from mirror" msgstr "Herunterladen vom Spiegelserver fehlgeschlagen" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Entpacken fehlgeschlagen" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Probleme mit treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Weise veraltete Daten zurück" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "Paketsets konfiguriert" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Keine konfiguriert" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "erstelle komprimiertes Repositoriums-Abbild + Prüfsumme" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "Repositoriums-Pfad" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "Abbild" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "Abbild-Prüfsumme" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "Öffner" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "komprimiere Repositorium + Prüfsumme" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "komprimiere Repositoriums-Pfad" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "Repositoriums-Prüfsumme" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "komprimiere Prüfsumme" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "bereite unkomprimiertes Repositorium für den Upload vor" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "deaktiviertes EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "bereite den Upload des Repositoriums auf Spiegelserver vor" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "Hochladen fehlgeschlagen, sperre und fahre fort" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "Repositorium ist bereits synchronisiert" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "Repositoriums-Synchronisation fehlgeschlagen" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "Vorfälle beim Download" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "Repositoriums-Synchronisation verboten" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "fehlende Paketsets" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() hat Fehler gemeldet" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Diese Pakete wurden noch nicht entfernt" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "Vorfälle beim Hochladen" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "Repositoriums-Synchronisierung erfolgreich beendet" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "Spiegelserver wurden nicht entsperrt. Synchronisiere sie." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "kann RSS-Cache der Aktualisierungen nicht speichern" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "EINSPEISEN" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "wurde eingespeist" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" "Du musst quickpkg manuell ausführen um die eingebettete Datenbank zu " "aktualisieren" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Die Repositoriums-Datenbank wird dennoch aktualisiert" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "Paket hat kein Schlüsselwort gesetzt, es wird maskiert werden!" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "Repositorium nicht konfiguriert" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "geschützte Repositoriums-ID, kann sie nicht verwenden, sorry Kumpel ..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "ungültige Repositoriums-Revision" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "setze standardmäßig auf 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "synchronisiere Paket Sets" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "keine Entsprechung" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Initialisiere Entropy-Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Willst du dieses Repositorium wirklich initialisieren ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "Kein gültiges Etikett angegeben" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "spiele ausgewählte Pakete aus den Zweigen zurück" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "Nichts zu tun" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "Dies sind die Pakete, welche weggespült werden" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "überprüfe Pakethash" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "Hash stimmt nicht überein für" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "falsche md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "Fehler beim Herunterladen von Paketen am Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "arbeite auf Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "aktualisiere Paket" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "Paket gespült" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "Kann Systemrepositorium nicht anfassen" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Vorbereitung zum verschieben von ausgewählten Paketen nach" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Vorbereitung zum kopieren von ausgewählten Paketen nach" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Hinweis" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1246,431 +1258,430 @@ msgstr "" "alle alten Pakete im Konfliktbereich werden vom Zielrepositorium entfernt, " "sofern nicht eingespeist" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "neues Etikett" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "umgekehrte Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "wechseln" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "kann nicht wechseln, Paket nicht gefunden, überspringe" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "verschiebe Datei" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "lade Daten aus Quellrepositorium" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "GPG Schlüssel war verfügbar in" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "speise Daten in Zielrepositorium ein" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "entferne Eintrag aus Quellrepositorium" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "Atom erfolgreich gehandhabt" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Speise Entropy-Metadaten in die erstellten Pakete ein" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "Nur zu deiner Information, das Laden der GPG ist fehlgeschlagen" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "speise Entropy-Metadaten ein" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "Einspeisung vollständig" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "entferne Paket" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Integritätsprüfung der ausgewählten Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Alle Pakete im Repositorium werden überprüft." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Dies ist die Liste der Pakete, die überprüft würden" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Arbeite auf Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "überprüfe Hash" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "Verzeichnisprüfung von" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NICHT gesund" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Dies ist die Liste der gebrochenen Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistiken" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Zahl der überprüften Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Zahl der gesunden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Zahl der fehlerhaften Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokal" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "überprüfe Status von" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "ist beschädigt, Prüfsumme gespeichert" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "geprüfte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "gesunde Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "fehlerhafte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "heruntergeladene Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "fehlgeschlagene Downloads" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "signiere Pakete für Repositorium mit GPG" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Alle im Repositorium fehlenden Pakete werden heruntergeladen." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG nicht verfügbar" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Schlüssel nicht verfügbar für" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "signiere Paket" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Unbekannter Fehler beim Signieren des Pakets" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "signierte Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "verfügbar" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "hochladen/ignoriert" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Starte Herunterladen fehlender Dateien" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Suche fehlende/fehlerhafte Dateien auf anderem Spiegelserver" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Binärpakete erfolgreich heruntergeladen." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Dies sind die Pakete, die online nicht gefunden werden können." -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Sie werden nicht geprüft werden" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Bitte stelle deinen Zweig ein auf" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "und versuche erneut" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "Kopiere Repositorium (falls nicht existent)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Wechsle Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Ignoriere" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "bereits im Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "Migrationsschleife vollständig" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Test auf verwaiste SPM Pakete läuft" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Durchsuche Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "nicht mehr gefunden" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Paketstring" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Prüfe" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Abhängigkeitstest läuft" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Dies sind die nicht gefundenen Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Benötigt von" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "von Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Alle Abhängigkeiten sind erfüllt. Alles ist gut." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Fehlerhafte und passende Pakete aufgelistet" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Lege Ergebnisse in Datei ab" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "System ist gesund" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Vergleiche Bibliotheken mit SPM, bitte warten" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Dies sind die passenden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Keine passenden Pakete" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Dein Standard-Repositorium ist nicht initialisiert" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Willst du dein Standard-Repositorium initialisieren ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Fahre mit einem uninitialisiertem Repositorium fort" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "Entropy-Repositorium wurde bereits von dir gesperrt :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "Sperre und synchronisiere Entropy-Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Spiegelserver Statustabelle" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Freigegeben" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Gesperrt" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "kann Spiegelserver nicht sperren" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Verzeichnis der Repositorydaten ist fehlerhaft" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "indiziere Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "Initialisiere ein leeres Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "Entropy Repositoriums-Datei" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "erfolgreich initialisiert" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "füge Paket hinzu" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "Paket hinzugefügt" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "manuelle Abhängigkeiten für" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Dies sind die nicht gefundenen Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Fehlende Abhängigkeiten" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Bist du sicher ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1678,144 +1689,145 @@ msgstr "Bist du sicher ?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Auflösen der Metadaten" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Sperren der Datenbanken beendet" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Ausnahmefehler aufgetreten, schließe Aufgaben" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "serverseitiges Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "Gemeinschafts-Repositorium" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Entropy Server Schnittstellen-Instanz auf Repositorium" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "aktueller Zweig" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "Typ" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Gegenwärtig konfigurierte Repositorien" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "GPG Schlüssel abgelaufen" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "bitte dringend korrigieren" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "GPG erhielt unerwarteten Fehler" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "überspringe" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "Konfigurationsdateien" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "überprüfe System" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "" "es existieren noch Konfigurationsdateien, die aktualisiert werden müssen" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "fand verfügbare dep_rewrites für das Paket" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "hinzugefügt" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "ersetzt" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "Keine Abhängigkeits-Neuschreibung erstellt für" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "Sets" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "aktualisiere Paketsets" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "füge Paketset hinzu" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "entferne Paketset" @@ -1897,8 +1909,7 @@ msgstr "Aktualisiere System-Datenbank mittels Repositorium" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repositorium" @@ -2287,7 +2298,7 @@ msgstr "Multifetching" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "Pakete" @@ -2345,16 +2356,8 @@ msgstr "Konfiguriere" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Ein anderes Entropy läuft bereits." @@ -2698,7 +2701,7 @@ msgstr "Erfolgreiches Repositoriumsbackup erstellt" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Alles ok" @@ -2981,75 +2984,75 @@ msgstr "" msgid "installing" msgstr "installiere" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Laufzeit-Abhängigkeit" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Nach Abhängigkeit" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Manuell hinzugefügte (durch Stab) Abhängigkeit" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Bau-Abhängigkeit" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "Beschädigtes Klient-Repositorium. Bitte spiele ein Backup zurück." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "unbekannte Ursache" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "user package.mask" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "system keywords" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "user package.unmask" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "user repo package.keywords (all packages)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "user repo package.keywords" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "user package.keywords" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "vollständig maskiert (durch Schlüsselworte?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "repository general packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "repository general packages.db.keywords" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "user license.mask" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "user live unmask" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "user live mask" @@ -3058,87 +3061,87 @@ msgstr "user live mask" msgid "Entropy needs your attention" msgstr "Entropy benötigt deine Aufmerksamkeit" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy hat eine Frage an dich" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Unterbrochen" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Ausgewählte Nummer" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Bitte wähle eine Option" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Verwerfe alle" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Bestätige" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Artikel hinzufügen" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Artikel bearbeiten" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Artikel entfernen" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Zeige gegenwärtige Liste" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Deine Wahl (gib eine Zahl ein und drücke Enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Du hast keine Nummer eingegeben." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Ungültige Handlung." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "String zum hinzufügen (-1 zum zurückgehen):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Ungültiger String." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Elementnummer zum Bearbeiten (-1 zum zurückzugehen):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "alt" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "neuer Wert:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Ungültiges Element." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Elementnummer zum Entfernen (-1 zum zurückgehen):" @@ -3303,16 +3306,18 @@ msgstr "GLSA Beschreibung" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titel" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3434,7 +3439,6 @@ msgstr "Bist du nicht" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Falsche Parameter" @@ -3485,7 +3489,7 @@ msgid "Error while creating package for" msgstr "Fehler beim Erstellen der Paketes für" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Kann nicht weiterarbeiten" @@ -3612,7 +3616,7 @@ msgstr "Repositoriums ID nicht verfügbar" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Schlüsselwort" @@ -3624,7 +3628,7 @@ msgstr "Schlüsselwort" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Gefunden" @@ -3635,7 +3639,6 @@ msgstr "Gefunden" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "Einträge" @@ -3666,8 +3669,8 @@ msgstr "" "(zirkulär)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3814,8 +3817,9 @@ msgstr "Suche nach Entfernbarkeit" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Keine Pakete gefunden" @@ -3875,7 +3879,7 @@ msgstr "Suche nach Slot" msgid "Package Set Search" msgstr "Paketset Suche" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Suche nach Tag" @@ -3952,7 +3956,7 @@ msgstr "Download" msgid "Checksum" msgstr "Prüfsumme" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Abhängigkeiten" @@ -4059,7 +4063,7 @@ msgid "repository already enabled" msgstr "Repositorium bereits aktiviert" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "Repositorium nicht verfügbar" @@ -4125,7 +4129,7 @@ msgstr "aktiv" msgid "never synced" msgstr "nie synchronisiert" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Status" @@ -4176,24 +4180,25 @@ msgstr "Keine Repositories angegeben in" msgid "Unhandled exception" msgstr "Unerwarteter Ausnahmefehler" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Schwarzes Brett ist nicht verfügbar" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Inhalt" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Link" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Willst du fortfahren ?" @@ -4203,7 +4208,8 @@ msgstr "Willst du fortfahren ?" msgid "Exit" msgstr "Schließen" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Bitte wähle durch Eingabe der jeweiligen Nummer" @@ -4213,7 +4219,7 @@ msgid "Notice board" msgstr "Schwarzes Brett" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Du hast keine root-Rechte" @@ -4235,8 +4241,7 @@ msgid "Type a number." msgstr "Gib eine Nummer ein." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Konfigurationsdatei" @@ -4355,7 +4360,7 @@ msgid "Unique files that would be automerged" msgstr "Spezifische Dateien, welche automatisch gemerged werden würden" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Ungültiges Repository" @@ -4373,7 +4378,7 @@ msgstr "Bereits eingeloggt als" msgid "Please logout first" msgstr "Bitte vorher ausloggen" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4381,7 +4386,7 @@ msgstr "Bitte vorher ausloggen" msgid "Username" msgstr "Benutzername" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4389,7 +4394,7 @@ msgstr "Benutzername" msgid "Password" msgstr "Kennwort" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4401,7 +4406,7 @@ msgstr "Bitte anmelden an" msgid "Login aborted. Not logged in." msgstr "Anmeldung fehlgeschlagen. Nicht angemeldet" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4619,7 +4624,7 @@ msgid "Installed packages database not available" msgstr "Datenbank für installierte Pakete nicht verfügbar" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "ist veraltet, bitte verwende" @@ -4635,15 +4640,15 @@ msgstr "Systemdatenbank gestaubsaugt" msgid "No System Databases found" msgstr "Keine Systemdatenbank gefunden" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Keine gesicherte Datenbank gefunden" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Wähle die Datenbank aus, die du wiederherstellen möchtest" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Entropy installierte Pakete Datenbank-Wiederherstellungs-Werkzeug" @@ -4931,28 +4936,23 @@ msgstr "Na schön, ich geb's auf, es ist hoffnungslos mit dir." msgid "Go to hell." msgstr "Zum Teufel mit dir" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Grundlegende Optionen" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "diese Ausgabe" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "Version ausgeben" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "deaktiviere farbige Ausgabe" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "deaktiviere farbige Ausgabe" @@ -4961,8 +4961,7 @@ msgstr "deaktiviere farbige Ausgabe" msgid "print a bash completion script to stdout" msgstr "schreibe ein bash completion script nach stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Anwendungsoptionen" @@ -5014,7 +5013,7 @@ msgstr "Repositoriums Schwarzes Brett Leser" msgid "show respositories status" msgstr "zeige Repositories-Status" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "suche Pakete in Repositories" @@ -5053,8 +5052,7 @@ msgstr "aktualisiere das System mit den neuesten verfügbaren Paketen" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "frage nach, bevor Änderungen ausgeführt werden" @@ -5062,8 +5060,7 @@ msgstr "frage nach, bevor Änderungen ausgeführt werden" msgid "just download packages" msgstr "lade Pakete nur herunter" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "zeige nur, was getan werden würde" @@ -5248,7 +5245,7 @@ msgstr "demaskiere eine oder mehrere Pakete" msgid "configure one or more installed packages" msgstr "konfiguriere ein oder mehrere installierte Pakete" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "suche nach nicht aufgelösten Abhängigkeiten" @@ -5264,7 +5261,7 @@ msgstr "sortiere Pakete anhand der Diskgröße" msgid "look for missing libraries" msgstr "suche nach fehlenden Programmbibliotheken" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "Lege Ergibnisse in Datei ab" @@ -5292,7 +5289,7 @@ msgstr "führe verschiedene Anfragen an Repository und lokale Datenbank durch" msgid "search from what package a file belongs" msgstr "suche, zu welchem Paket eine Datei gehört" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "zeige Paket changelog" @@ -5300,13 +5297,11 @@ msgstr "zeige Paket changelog" msgid "search what packages depend on the provided atoms" msgstr "suche nach Paketen, welche von den gegebenen atoms abhängen" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "durchsuche Pakete nach Beschreibung" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "zeige Dateien, welche zu den gegebenen atoms gehören" @@ -5349,8 +5344,7 @@ msgstr "" "assoziiere die gegebenen Dateipfade mit Anwendungen denen es möglich ist, " "sie zu lesen" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" "zeige Programmbibliotheken, welche von den gegebenen Atomen benötigt werden" @@ -5367,8 +5361,7 @@ msgstr "zeige den Baum zum Entfernen der gegebenen atoms" msgid "show atoms needing the provided libraries" msgstr "zeige atoms, welche die gegebenen Bibliotheken benötigen" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "sucher verfügbare Paketsets" @@ -5380,28 +5373,25 @@ msgstr "zeige Pakete mit dem gegebenen Slot" msgid "show packages owning the provided tags" msgstr "zeige Pakete mit der gegebenen Bezeichnung" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "zeige Direktabhängigkeitsbaum der ausgewählten installierbaren Atome" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "füge Systempakete hinzu, baue Abhängigkeiten und zirkuläre Informationen" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" "zeige rückwärtige Abhängigkeitsbaum der aufgeführten installierten Atome" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "zeige mehr Details" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "Ausgabe der Resultate für scripts" @@ -5484,7 +5474,7 @@ msgstr "" "generiere Datenbank installierter Pakete aus den Dateien im System [letzte " "Hoffnung]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "regeneriere SPM UIDs Karte (SPM <-> Entropy Pakete)" @@ -5505,352 +5495,22 @@ msgstr "" "her" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "behandelt Community-Funktionen" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "Management-Funktionen für Community-Repositories" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "durchsuche das System nach kürzlich kompilierten Paketen" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analysiere das Entropy-Speicherverzeichnis direkt" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "packe die ausgewählten Atome neu" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "frage nichts außer wirklich wichtige Dinge" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "verwalte nur die ausgewählten Atome" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "läuft im interaktiven Modus (stellt eine Frage nach der anderen)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"füge binäre Pakete zum Repository hinzu, ohne dederenn Anwendungsbereich zu " -"ändern (mehrere Pakete)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "Spiegelmanagement-Funktionen für Community-Repositories" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "synchronisiere Pakete, Datenbank und mach auch ein wenig sauber" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "synchronisiere alle konfigurierten Repositories" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "synchronisiere Pakete über primäre Spiegel" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "verifiziere auch die Paketprüfsummen" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "synchronisiere die aktuellen Repositories über primäre Spiegel" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "sperre die aktuelle Repository-Datenbank (Serverseitig)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "gebe die aktuelle Repository-Datenbank frei (Serverseitig)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "sperre die aktuelle Repository-Datenbank (beim Client)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "gebe die aktuelle Repository-Datenbank frei (beim Client)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "zeige aktuellen Gesperrt-Status" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "entferne binäre Pakete, welche nicht in Repositories und veraltet sind" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Berechne verfügbare Pakete:" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "Manage ein Repository" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(re)initialisiere die aktuelle Repository-Datenbank" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "Datenbank nicht mit Paketen der Spiegel wiederbefüllen" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(neu)erstellen der Datenbank für das gegebene Repository" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "erzwinge Versionssprung für die aktuelle Repository-Datenbenk" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "synchronisiere die Datenbank" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "spielt Pakete alter Zweige in den gegenwärtigen Zweig zurück" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "entferne die gegebenen atoms von der aktuellen Repository-Datenbank" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"entferne die angegebenen eingespeisten atoms (alle, wenn kein atom angegeben " -"wurde)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "erstelle eine leere Repository-Datenbank im gegebenen Verzeichnis" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "wechsle auf den angegebenen Branch der gegebenen atoms (oder allen)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "überprüfe Remote-Prüfsumme der gegebenen atoms (oder von allen)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "erstelle ein Backup der gegenwärtigen Repositoriums-Datenbank" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "stelle eine zuvor gesicherte Repository-Datenbank wieder her" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "aktiviere das angegebene Repository" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "deaktiviere das angegebene Repository" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "zeige den aktuellen Status des Server-Interfaces" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "überprüfe Pakete im Repositorium nach fehlenden Abhängigkeiten" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "behandle Paketabhängigkeiten" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"clone ei Paket innerhalb des Repositoriums und weise ihm ein willkürliches " -"Etikett zu" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "verschiebe Pakete von einem Repository in ein anderes" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "holt Abhängigkeiten herein" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "kopiere Pakete von einem Repository in ein anderes" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "setze das Standard-Repository" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "verwalte Digitalsignaturen des Repositoriums (OpenGPG)" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "erstelle ein Schlüsselpaar für das Repositorium und signiere Pakete" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "lösche Schlüsselpaar (und digitale Signatur) aus dem Repositorium" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"zeige gegenwärtig konfigurierte Schlüsselinformationen für ausgewählte " -"Repositorien" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"Zeichne (oder zeichne erneut) Pakete im Repositorium unter Verwendung des " -"gegenwärtigen Schlüsselsatzes" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importiere Schlüsselpaar, verbinde es mit ausgewähltem Repositorium" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exportiere öffentlichen Schlüssel des gewählten Repositoriums" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "Exportiere privaten Schlüssel des gegebenen Repositoriums" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "mach ein paar Suchanfragen auf Community-Repositories Datenbanken" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "zeige, zu welchem Paket die gegebene Datei gehört" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "zeige, welche Pakete von den gegebenen atoms abhängen" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "zeige alle Pakete im Standard-Repository" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "suche Pakete innerhalb der standard Repository-Datenbank" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "zeige Pakete mit den entsprechenden Bezeichnungen" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "zeige installierte Pakete die über die spezifizierte Revision verfügen" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "Quellpaketmanager-Funktionen" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "Kompilierfunktion" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "kompiliere Pakete in den angegebenen Kategorien" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "liste Pakete nur auf" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "lade keine alten Pakete in den Slot herunter" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "kompiliere Pakete mit in den angegebenen Paketset Namen" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "baue alles neu" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "starte Datenbankaktualisierung, wenn all gut gegangen ist" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "starte Spiegelserver-Synchronisation, wenn all gut geht" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "suche verwaiste Pakates im SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "Schwarzes Brett Bedienfunktionen" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "füge neue Nachricht zum schwarzen Brett hinzu" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "lösche Nachricht aus dem Schwarzen Brett" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "lese aktuelles schwarzes Brett" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" -"suche nach nicht aufgelösten Abhängigkeiten in den Community-Repositories" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "vergleiche die Integrität lokaler Paketdateien" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "behandelt nutzergenerierter Inhalt Funktionen" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "Anmelden an einem ausgewählten Repositorium" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "logout vom angegebenen Repository" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "erzwinge Aktion" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5858,81 +5518,71 @@ msgstr "" "verwalte Paketdokumente für das ausgewählte Repositorium (Kommentare, " "Dateien, Videos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "beziehe verfügbare Dokumente für den spezifizierten Paketschlüssel " "(Beispiel: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "füge dem spezifizierten Paketschlüssel ein neues Dokumenet hinzu (Beispiel: " "x11-libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "lösche Dokumente von der Datenbank durch ihre Identifizierung" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "verwalte Paketstimmen für das ausgewählte Repositorium" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" "beziehe Stimme für den spezifizierten Paketschlüssel (Beispiel: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" "füge Stimme für den spezifizierten Paketschlüssel hinzu (Beispiel: x11-libs/" "qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "behandelt den Entropy-Cache" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "leere Entropy-Cache" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "entferne heruntergeladene Pakete und lösche temporäre Verzeichnisse" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "zeige Systeminformationen" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Du musst sys-apps/entropy-server installieren. :-) Tu' es !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Du musst sys-apps/entropy-server installieren/aktualisieren. :-) Mach's " -"einfach !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "nicht genügend Parameter" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "Installierte Paketrepositorien sind beschädigt. Bitte regeneriere sie" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "Deine Festplatte ist voll! Dein Fehler!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "Kein Speicher mehr Kumpel! Dein Fehler!" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -5940,25 +5590,25 @@ msgstr "" "Hallo. Mein Name ist Bug Reporter. Ich muss dir leider mitteilen, dass Equo " "abgestürzt ist. Tja, dumm gelaufen." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Aber es gibt etwas das du tun kannst um Equo zu einer besseren Anwendung zu " "machen." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- AUCH WENN ICH NICHT WILL DASS DU DIESELBE MELDUNG IMMER WIEDER SCHICKST --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Jetzt zeige ich dir was passiert ist. Keine Angst, Ich bin hier un dir zu " "helfen" -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5966,11 +5616,11 @@ msgstr "" "Oh, hmm, ich kann nicht einmal auf /tmp schreiben. Also, bitte kopiere die " "Fehlermeldung und mail an lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Ah, natürlich hast du Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -5980,11 +5630,11 @@ msgstr "" "über deine Hardware zu meinen Entwickler senden, damit sie mich reparieren " "können? (Deine IP-Adresse wird gespeichert)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ok, ok ok ok... Sorry!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -5992,19 +5642,19 @@ msgstr "" "Wenn du kontaktiert (und aktiv supported) werden willst, beantworte bitte " "auch die nachfolgenden Fragen:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Dein voller Name:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Deine E-Mail Adresse:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Was du so machst:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6012,7 +5662,7 @@ msgstr "" "Vielen Dank. Der Fehler wurde gemeldet und das Problem wird so schnell wie " "möglich in Angriff genommen." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." @@ -6020,11 +5670,11 @@ msgstr "" "Huh... ich kann de Meldung nicht senden. Wenn du möchtest, maile die unten " "aufgeführte Datei an lxnay@sabayonlinux.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Entropy/Equo Versions nicht übereinstimmend" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "es könnte dein System explodieren lassen!" @@ -6033,7 +5683,6 @@ msgstr "es könnte dein System explodieren lassen!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Nichts zu tun" @@ -6179,10 +5828,7 @@ msgstr "ist fehlerhaft" msgid "atom" msgstr "Atom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "in" @@ -6207,6 +5853,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Dies sind die Pakete, die MANUELL entfernt werden sollten" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Dies sind die Pakete, welche entfernt werden würden" @@ -6436,7 +6083,7 @@ msgstr "Installation vollständig" msgid "These are the packages that would be masked" msgstr "Dies sind die Pakete die maskiert werden würden" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Möchtest du fortfahren ?" @@ -6472,8 +6119,7 @@ msgstr "Entfernen untersagt" msgid "Would you like to calculate dependencies ?" msgstr "Würdest du gerne die Abhängigkeiten berechnen lassen?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Willst du sie jetzt entfernen ?" @@ -6523,7 +6169,10 @@ msgstr "10 Sekunden" msgid "Libraries/Executables statistics" msgstr "Statistiken für Programmbibliotheken und ausführbare Dateien" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Keine Entsprechung" @@ -6531,718 +6180,1022 @@ msgstr "Keine Entsprechung" msgid "Would you like to install them ?" msgstr "Würdest du sie gerne installieren?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "zeige gegenwärtigen Repositoriums-Status" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "mach einige Suchanfragen in den Repository-Datenbanken" - -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -"übereinstimmende Paketabhängigkeiten innerhalb der Standard " -"Repositoriumsdatenbank" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(re)initialisiere die aktuelle Repository-Datenbank" +msgid "available tests" +msgstr "verfügbar" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Test Abhängigkeiten" + +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Teste Programmbibliotheken" + +#: ../../server/eit/commands/test.py:57 +#, fuzzy +msgid "dump results to file" +msgstr "Lege Ergibnisse in Datei ab" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" +msgstr "suche nach fehlenden Programmbibliotheken" + +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" +msgstr "" + +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Paket atoms" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "verifiziere auch die Paketprüfsummen" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 +#, fuzzy +msgid "verify remote packages integrity" +msgstr "verifiziere auch die Paketprüfsummen" + +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" +msgstr "" + +#: ../../server/eit/commands/query.py:55 +#, fuzzy +msgid "execute query" +msgstr "Führe Kopieren aus" + +#: ../../server/eit/commands/query.py:56 +#, fuzzy +msgid "available queries" +msgstr "verfügbar" + +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "user package.mask" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" +msgstr "" + +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "aktiviere ausgewähltes Repositorium" + +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Hostname" + +#: ../../server/eit/commands/query.py:72 +#, fuzzy +msgid "show libraries (.so) required by matched packages" +msgstr "Dies sind die passenden Pakete" + +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "" +"zeige rückwärtige Abhängigkeitsbaum der aufgeführten installierten Atome" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" +msgstr "" + +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" msgstr "füge keine rückwärtigen Abhängigkeiten hinzu" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "wechsle auf den angegebenen Branch der gegebenen atoms (oder allen)" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "verifiziere entfernte Integrität der übermittelten Atome" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "Klone ein Paket und füge einen beliebigen Tag hinzu" - -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" -msgstr "maskiere gegebene Pakete im gegebenen Repositorium" - -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" -msgstr "demaskiere gegebene Pakete im gegebenen Repositorium" - -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "durchsuche verwaiste Pakete in SPM" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "durchsuche neue verfügbare Pakete in SPM" - -#: ../../server/reagent.py:120 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "look for missing libraries (scan system)" -msgstr "suche nach fehlenden Programmbibliotheken" +msgid "search through package sets" +msgstr "sucher verfügbare Paketsets" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "suche nach fehlenden Programmbibliotheken" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "entferne heruntergeladene Pakete (und lösche temporäre Verzeichnisse)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "Starte Synchronisation von Daten über die Spiegel (Pakete/Datenbank)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Breche ab!" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Bitte gib eine Commit-Meldung ein" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Soll ich mit dem Aufräumen weiterarbeiten ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Exit/Commit" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Hinweis" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "Relevante URL (optional)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Repositoriums Schwarzes Brett, neues Element einfügen" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Wähle jenes das du entfernen möchtest" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Bist du dir sicher, dass du es entfernen möchtest?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Starte Sperren der Spiegel-Datenbanken" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Ein Problem ist mit bei mindestens einem Spiegel aufgetreten" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Wiederherstellung beendet" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Starte Freigeben der Spiegel-Datenbanken" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Wiederherstellung beendet" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Starte Sperren der Download-Spiegel Datenbanken" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Sperren der Download-Spiegel beendet" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Starte Freigeben der Download-Spiegel Datenbanken" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Freigeben der Download-Spiegel beendet" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "DATENBANK" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "DOWNLOAD" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "in Repositories" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Datenbank-Synchronisationsfehler, kann nicht fortfahren." - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Berechne verfügbare Pakete:" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/query.py:114 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Status des entfernten Entropy-Datenbank-Repositoriums" +msgid "package set name" +msgstr "Paketset Name" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Wirt" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Version" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/query.py:118 #, fuzzy -msgid "Local revision currently at" -msgstr "Örtliche Datenbankrevision ist gegegenwärtig bei" +msgid "search packages through their description" +msgstr "durchsuche Pakete nach Beschreibung" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "wähle den zu benutzenden Zweig" +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Repositoriums-Informationen" -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Pakete Beschreibung" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Nichts gefunden" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "Programmbibiotheken" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "Paket-Repositories Verarbeitungsfunktionen" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "synchronisiere Paket-Repositories über primäre Spiegel" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "Paket-Repositorien Verarbeitungsfunktionen" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "GPG-Schnittstelle geladen, Heimatverzeichnis" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "Importiere Schlüsselpaar für das Repositorium" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "Ein anderes Schlüsselpaar existiert bereits für das Repositorium" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "Importierte GPG Schlüssel samt Fingerabdrücken" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Jetzt solltest du alle Pakete darin signieren" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "Exportiere privaten Schlüssel des Repositoriums" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "Exportiere öffentlichen Schlüssel des Repositoriums" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "Kein Schlüsselpaar verfügbar für Repositorium" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "ABGELAUFENES Schlüsselpaar für Repositorium" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "Export des GPG Schlüsselfs für das Repositorium ist nicht möglich" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "Exportiere GPG Schlüssel für das Repositorium" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "Erstelle Schlüssel für das Repositorium" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "Ein weiterer Schlüssel existiert bereits für das Repositorium" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "E-Mail einfügen" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "Füge Ablauftage ein (0=kein Ablauf)" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "Füge Passphrase ein (leer=keine Passphrase)" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "Repositoriums GPG Schlüssel Erstellung" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "Produziere GPG Schlüssel mit Fingerabdruck" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" -"Stell verdammt noch mal sicher einen Rücknahmeschlüssel zu erstellen und " -"speichere ihn an einem sehr sicheren Platz." - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" -"Du wirst deine Schlüssel vermutlich auch gerne an einen Schlüsselserver " -"senden" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "Lösche Schlüssel des Repositoriums" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "Keine Schlüssel für das angegebene Repositorium verfügbar" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "Bist du wirklich sicher?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "Schlüssel-Metadaten nicht verfügbar für" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "Gelöschter GPG Schlüssel mit Fingerabdruck" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "GPG Information für Repositorium" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "Öffentlicher Schlüssel Identifizierer" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "Fingerabdruck des öffentlichen Schlüssels" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Schlüsselgröße" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Erstellungsdatum" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Verfällt am" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "kein Paket angegeben." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Aktiviere" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Aktiviert" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "bereits aktiviert" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Deaktiviere" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Deaktiviert" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "bereits deaktiviert" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "Ungültiger Syntax." - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "Keine gültiges Repositorium angegeben" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Keine Entsprechung" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "Kein Paket ausgewählt." - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "Paket Abhängigkeiten" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Keine Abhängigkeiten" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Abhängigkeitstyp" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Wähle einen Abhängigkeitstyp aus für" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Abhängigkeits-Editor" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Bestätigen?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "Abhängigkeiten erfolgreich aktualisiert" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "Maskieren" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "Demaskieren" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Suche entsprechende Pakete zum Entfernen" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Nicht genug Parameter" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Dies sind die Pakete, welche aus der Datenbank entfernt werden würden" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Entferne ausgewähltes Paket" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Pakete entfernt. Um binäre Pakete zu entfernen, starte Activator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Suche nach eingespeisten Paketen zum Entfernen" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Dies sind die zur Entfernung vorgesehenen eingespeisten Pakete" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Wechsle branch, sei sicher dass deine Pakete synchronisiert sind" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Sammle Pakete, welche markiert werden würden" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Dies sind die Pakete, welche markiert werden würden" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Keine gültigen Repositories angegeben" - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Ungültige Repositorien angegeben." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Entropy Repositorium wurde initialisiert" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Erstelle leere Datenbank in" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Kann bereits existierende Datei nicht überschreiben" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Versionssprung der Repository-Datenbenk" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Keine gültigen Pakete zum Neuverpacken." - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Durchsuche Datenbank nach Unterschieden" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Ungültiges AtomUngültige Beschreibung" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Nix zam tuan" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "" -"Dies sind die Pakete, deren Status auf \"eingespeist\" geändert werden würde" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Willst du sie jetzt transformieren ?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformiere aus Datenbank" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Datenbanktransformierung beendet" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "abgelaufen" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Entferne dieses Paket?" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Dieses Paket hinzufügen?" - -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "Dies sind die Pakete, die installiert/aktualisiert würden" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "Warnung" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Willst du sie jetzt verpacken ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "innen" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Komprimiere Pakete" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Ignoriere fehlerhaften Spm-Eintrag, bitte neu kompilieren" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Nichts zu tun, schau später nochmal vorbei." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Einträge verarbeitet" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "Benutzer nicht gefunden" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Keine Pakete gefunden" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "erzwinge Aktualisierung der Paket-Metadaten" + +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "lokale Revision" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "gespeicherte Pakete" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "hochgeladene Pakete" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "signierte Pakete" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "hinzugefügt" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "wechseln" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"Dies sind die neu verfügbaren Pakete, sei es aktualisierbar oder bisher " -"nicht installiert" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Keine Paketsets gefunden" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "Paketset nicht gefunden" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Nichts gefunden" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "zeige Repositories-Status" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Keine Kernelpakete angegeben" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "zeige installierte Pakete" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "Nicht verfügbar" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "keine Pakete" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "suche Pakete in Repositories" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "suche Pakete in Repositories" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Entropy Repositorium wurde initialisiert" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Aktuelles Repository" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Zielrepository" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "Paket Abhängigkeiten" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "verschiebe Pakete von einem Repository in ein anderes" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Paketset Name" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Nichts gefunden" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "ist nicht im aktuellen Repositorium enthalten!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "Sockel-Fehler" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "ungültige Repositoriums-Revision" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "zeige Repositories-Status" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "verschiebe Pakete von einem Repository in ein anderes" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "diese Ausgabe" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "entferne Repositorium" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Überspringe Repositorium" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Repository Version" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Aktualisiere Repositories" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Wähle das Repository" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Übergebe Nachricht" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Bitte gib eine Commit-Meldung ein" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Status des entfernten Entropy-Datenbank-Repositoriums" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Wirt" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Entfernt" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "lokal" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Breche ab!" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Erstelle Anmeldeinformation" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Zeige verfügbare Anwendungen" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Füge Notizbrett-Eintrag hinzu" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Entferne Eintrag vom Notizbrett" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Schwarzes Brett" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "URL eingeben" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Wähle jenes das du entfernen möchtest" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Bist du dir sicher, dass du es entfernen möchtest?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Exit/Commit" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Beziehe Schwarzes Brett des Repositoriums" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "Repositoriums-Pfad" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "arbeite an Repositorium" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "aktiviere ausgewähltes Repositorium" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Installierte Paketrepositorien" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Entferne ausgewähltes Paket" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Keine Entsprechung" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Keine gültigen Pakete zum Neuverpacken." + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Durchsuche Datenbank nach Unterschieden" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Ungültiges backend" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Nix zam tuan" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "wurde eingespeist" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformiere aus Datenbank" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Datenbanktransformierung beendet" +msgid "Action completed" +msgstr "Einspeisung vollständig" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "abgelaufen" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" +msgid "Select packages for removal" +msgstr "Suche nach eingespeisten Paketen zum Entfernen" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Entferne dieses Paket?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Übereinstimmungen zum Entfernen aus der Repositoriums-Datenbank" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" +msgid "Select packages to add" +msgstr "Einige Pakete sind maskiert" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Dieses Paket hinzufügen?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Sie würden zur System-Datenbank hinzugefügt werden" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "Warnung" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Willst du sie jetzt verpacken ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "innen" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Komprimiere Pakete" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Ignoriere fehlerhaften Spm-Eintrag, bitte neu kompilieren" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Nichts zu tun, schau später nochmal vorbei." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Einträge verarbeitet" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Installierte Paketrepositorien" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "ist nicht verfügbar" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "arbeite an Repositorium" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "finde ein Paket in den Repositories" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "aktiviere ausgewähltes Repositorium" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Lade Repository-Datenbank herunter" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "zeige aktuellen Gesperrt-Status" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Spiegelserver Statustabelle" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Server" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Nach Repositorium" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "Im Repositorium" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"füge Systempakete hinzu, baue Abhängigkeiten und zirkuläre Informationen" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "" +"zeige rückwärtige Abhängigkeitsbaum der aufgeführten installierten Atome" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Berechne verfügbare Pakete:" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Berechne verfügbare Pakete:" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Alle Repositories waren bereits am aktuellsten Stand." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Berechne verfügbare Pakete:" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "Datei nicht gefunden" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "zeige Dateien, welche zu den gegebenen atoms gehören" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "aktiviere ausgewähltes Repositorium" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "füge keine rückwärtigen Abhängigkeiten hinzu" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "verschiebe Pakete von einem Repository in ein anderes" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "Paket Abhängigkeiten" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Keine Abhängigkeiten" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Abhängigkeitstyp" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Wähle einen Abhängigkeitstyp aus für" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Abhängigkeits-Editor" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Bestätigen?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "Abhängigkeiten erfolgreich aktualisiert" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Installierte Paketrepositorien" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "Paket Abhängigkeiten" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Konfiguriere Paket" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "kopiere Pakete von einem Repository in ein anderes" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Entpacke Paket für Abhängigkeiten" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "erzwinge Aktion" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "erstelle ein Schlüsselpaar für das Repositorium und signiere Pakete" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "lösche Schlüsselpaar (und digitale Signatur) aus dem Repositorium" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "Kein Schlüsselpaar verfügbar für Repositorium" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"Zeichne (oder zeichne erneut) Pakete im Repositorium unter Verwendung des " +"gegenwärtigen Schlüsselsatzes" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importiere Schlüsselpaar, verbinde es mit ausgewähltem Repositorium" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Fingerabdruck des öffentlichen Schlüssels" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "entferntes Repositorium wurde plötzlich verriegelt" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "GPG-Schnittstelle geladen, Heimatverzeichnis" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "Erstelle Schlüssel für das Repositorium" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "Ein weiterer Schlüssel existiert bereits für das Repositorium" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "E-Mail einfügen" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "Füge Ablauftage ein (0=kein Ablauf)" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "Füge Passphrase ein (leer=keine Passphrase)" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "Repositoriums GPG Schlüssel Erstellung" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "Produziere GPG Schlüssel mit Fingerabdruck" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Jetzt solltest du alle Pakete darin signieren" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Stell verdammt noch mal sicher einen Rücknahmeschlüssel zu erstellen und " +"speichere ihn an einem sehr sicheren Platz." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "" +"Du wirst deine Schlüssel vermutlich auch gerne an einen Schlüsselserver " +"senden" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "Lösche Schlüssel des Repositoriums" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "Keine Schlüssel für das angegebene Repositorium verfügbar" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "Bist du wirklich sicher?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "Schlüssel-Metadaten nicht verfügbar für" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "Gelöschter GPG Schlüssel mit Fingerabdruck" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "GPG Information für Repositorium" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "Öffentlicher Schlüssel Identifizierer" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "Fingerabdruck des öffentlichen Schlüssels" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Schlüsselgröße" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Erstellungsdatum" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Verfällt am" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Importiere Schlüsselpaar für das Repositorium" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Ein anderes Schlüsselpaar existiert bereits für das Repositorium" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "Importierte GPG Schlüssel samt Fingerabdrücken" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Jetzt solltest du alle Pakete darin signieren" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "Exportiere privaten Schlüssel des Repositoriums" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "Exportiere öffentlichen Schlüssel des Repositoriums" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "Kein Schlüsselpaar verfügbar für Repositorium" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "ABGELAUFENES Schlüsselpaar für Repositorium" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "Export des GPG Schlüsselfs für das Repositorium ist nicht möglich" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "Exportiere GPG Schlüssel für das Repositorium" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "Manage ein Repository" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Paket atoms" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "kann Spiegel-Verzeichnis nicht erstellen" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "unterstützte Branches" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Ungültiges backend" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "suche Pakete in Repositories" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Wechsel zum Zweig ist nicht möglich" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "Branch" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Ungültiges AtomUngültige Beschreibung" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "Manage ein Repository" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Aktuelles Repository" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7299,116 +7252,122 @@ msgstr "Es gibt unvollständige Paketsets, fahre auf eigene Gefahr fort" msgid "Application" msgstr "Anwendung" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Erfolgreich angemeldet als" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "unterstützte Branches" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Stimmabgabe erfolgreich registriert" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Fehler während der Stimmabgabe" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Bereits gelöscht" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Anwendungen" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Anwendungen zum Entfernen" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Anwendungen zum Downgraden" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Anwendungen zur Installation" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Anwendungen zur Aktualisierung" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Anwendungen zur erneuten Installation" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Vorgeschlagen" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Ziel" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Version" -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Sicherheits ID." -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Anwendungsname" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Bitte warten, am laden ..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Ratschläge werden geladen" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Keine Empfehlungen" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Es gibt keine Einträge zu zeigen" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Dateiname" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "kann Standard-Repositorium nicht deaktivieren" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Aktiv" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Aktualisierung" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Version" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Repositoriums Identifizierer" @@ -7833,6 +7792,10 @@ msgstr "Einige Pakete sind maskiert" msgid "Masked package" msgstr "Maskiertes Paket" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Aktiviert" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Bitte bestätige die oben angeführten Aktionen" @@ -9906,12 +9869,476 @@ msgstr "Magneto Anwendungs Update Notifier" msgid "_Load Package Manager" msgstr "_Lade Paketmanager" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "Entropy Server-Schnittstelle muss als root ausgeführt werden" +#~ msgid "handles community-side features" +#~ msgstr "behandelt Community-Funktionen" + +#~ msgid "community repositories management functions" +#~ msgstr "Management-Funktionen für Community-Repositories" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "durchsuche das System nach kürzlich kompilierten Paketen" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analysiere das Entropy-Speicherverzeichnis direkt" + +#~ msgid "repackage the specified atoms" +#~ msgstr "packe die ausgewählten Atome neu" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "frage nichts außer wirklich wichtige Dinge" + +#~ msgid "manage only the specified atoms" +#~ msgstr "verwalte nur die ausgewählten Atome" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "läuft im interaktiven Modus (stellt eine Frage nach der anderen)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "füge binäre Pakete zum Repository hinzu, ohne dederenn Anwendungsbereich " +#~ "zu ändern (mehrere Pakete)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "Spiegelmanagement-Funktionen für Community-Repositories" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "synchronisiere Pakete, Datenbank und mach auch ein wenig sauber" + +#~ msgid "sync all the configured repositories" +#~ msgstr "synchronisiere alle konfigurierten Repositories" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "synchronisiere Pakete über primäre Spiegel" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "synchronisiere die aktuellen Repositories über primäre Spiegel" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "sperre die aktuelle Repository-Datenbank (Serverseitig)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "gebe die aktuelle Repository-Datenbank frei (Serverseitig)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "sperre die aktuelle Repository-Datenbank (beim Client)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "gebe die aktuelle Repository-Datenbank frei (beim Client)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "entferne binäre Pakete, welche nicht in Repositories und veraltet sind" #, fuzzy -#~ msgid "reset error" -#~ msgstr "Sockel-Fehler" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Berechne verfügbare Pakete:" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(re)initialisiere die aktuelle Repository-Datenbank" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "Datenbank nicht mit Paketen der Spiegel wiederbefüllen" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(neu)erstellen der Datenbank für das gegebene Repository" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "erzwinge Versionssprung für die aktuelle Repository-Datenbenk" + +#~ msgid "synchronize the database" +#~ msgstr "synchronisiere die Datenbank" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "spielt Pakete alter Zweige in den gegenwärtigen Zweig zurück" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "entferne die gegebenen atoms von der aktuellen Repository-Datenbank" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "entferne die angegebenen eingespeisten atoms (alle, wenn kein atom " +#~ "angegeben wurde)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "erstelle eine leere Repository-Datenbank im gegebenen Verzeichnis" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "wechsle auf den angegebenen Branch der gegebenen atoms (oder allen)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "überprüfe Remote-Prüfsumme der gegebenen atoms (oder von allen)" + +#~ msgid "backup current repository database" +#~ msgstr "erstelle ein Backup der gegenwärtigen Repositoriums-Datenbank" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "stelle eine zuvor gesicherte Repository-Datenbank wieder her" + +#~ msgid "enable the specified repository" +#~ msgstr "aktiviere das angegebene Repository" + +#~ msgid "disable the specified repository" +#~ msgstr "deaktiviere das angegebene Repository" + +#~ msgid "show the current Server Interface status" +#~ msgstr "zeige den aktuellen Status des Server-Interfaces" + +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "überprüfe Pakete im Repositorium nach fehlenden Abhängigkeiten" + +#~ msgid "handle packages dependencies" +#~ msgstr "behandle Paketabhängigkeiten" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "clone ei Paket innerhalb des Repositoriums und weise ihm ein " +#~ "willkürliches Etikett zu" + +#~ msgid "pulls dependencies in" +#~ msgstr "holt Abhängigkeiten herein" + +#~ msgid "set the default repository" +#~ msgstr "setze das Standard-Repository" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "verwalte Digitalsignaturen des Repositoriums (OpenGPG)" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "zeige gegenwärtig konfigurierte Schlüsselinformationen für ausgewählte " +#~ "Repositorien" + +#~ msgid "export public key of given repository" +#~ msgstr "exportiere öffentlichen Schlüssel des gewählten Repositoriums" + +#~ msgid "export private key of given repository" +#~ msgstr "Exportiere privaten Schlüssel des gegebenen Repositoriums" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "mach ein paar Suchanfragen auf Community-Repositories Datenbanken" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "zeige, zu welchem Paket die gegebene Datei gehört" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "zeige, welche Pakete von den gegebenen atoms abhängen" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "zeige alle Pakete im Standard-Repository" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "suche Pakete innerhalb der standard Repository-Datenbank" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "zeige Pakete mit den entsprechenden Bezeichnungen" + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "" +#~ "zeige installierte Pakete die über die spezifizierte Revision verfügen" + +#~ msgid "source package manager functions" +#~ msgstr "Quellpaketmanager-Funktionen" + +#~ msgid "compilation function" +#~ msgstr "Kompilierfunktion" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "kompiliere Pakete in den angegebenen Kategorien" + +#~ msgid "just list packages" +#~ msgstr "liste Pakete nur auf" + +#~ msgid "do not pull old package slots" +#~ msgstr "lade keine alten Pakete in den Slot herunter" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "kompiliere Pakete mit in den angegebenen Paketset Namen" + +#~ msgid "rebuild everything" +#~ msgstr "baue alles neu" + +#~ msgid "run database update if all went fine" +#~ msgstr "starte Datenbankaktualisierung, wenn all gut gegangen ist" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "starte Spiegelserver-Synchronisation, wenn all gut geht" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "suche verwaiste Pakates im SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "Schwarzes Brett Bedienfunktionen" + +#~ msgid "add a news item to the notice board" +#~ msgstr "füge neue Nachricht zum schwarzen Brett hinzu" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "lösche Nachricht aus dem Schwarzen Brett" + +#~ msgid "read the current notice board" +#~ msgstr "lese aktuelles schwarzes Brett" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "suche nach nicht aufgelösten Abhängigkeiten in den Community-Repositories" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "vergleiche die Integrität lokaler Paketdateien" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Du musst sys-apps/entropy-server installieren. :-) Tu' es !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Du musst sys-apps/entropy-server installieren/aktualisieren. :-) Mach's " +#~ "einfach !" + +#~ msgid "show current repositories status" +#~ msgstr "zeige gegenwärtigen Repositoriums-Status" + +#~ msgid "do some searches into repository databases" +#~ msgstr "mach einige Suchanfragen in den Repository-Datenbanken" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "" +#~ "übereinstimmende Paketabhängigkeiten innerhalb der Standard " +#~ "Repositoriumsdatenbank" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(re)initialisiere die aktuelle Repository-Datenbank" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "wechsle auf den angegebenen Branch der gegebenen atoms (oder allen)" + +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verifiziere entfernte Integrität der übermittelten Atome" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "Klone ein Paket und füge einen beliebigen Tag hinzu" + +#~ msgid "mask given package in given repository" +#~ msgstr "maskiere gegebene Pakete im gegebenen Repositorium" + +#~ msgid "unmask given packages in given repository" +#~ msgstr "demaskiere gegebene Pakete im gegebenen Repositorium" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "durchsuche verwaiste Pakete in SPM" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "durchsuche neue verfügbare Pakete in SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "suche nach fehlenden Programmbibliotheken" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "" +#~ "entferne heruntergeladene Pakete (und lösche temporäre Verzeichnisse)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Starte Synchronisation von Daten über die Spiegel (Pakete/Datenbank)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Soll ich mit dem Aufräumen weiterarbeiten ?" + +#~ msgid "Notice text" +#~ msgstr "Hinweis" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "Relevante URL (optional)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Repositoriums Schwarzes Brett, neues Element einfügen" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Starte Sperren der Spiegel-Datenbanken" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Ein Problem ist mit bei mindestens einem Spiegel aufgetreten" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Wiederherstellung beendet" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Starte Freigeben der Spiegel-Datenbanken" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Wiederherstellung beendet" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Starte Sperren der Download-Spiegel Datenbanken" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Sperren der Download-Spiegel beendet" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "Starte Freigeben der Download-Spiegel Datenbanken" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Freigeben der Download-Spiegel beendet" + +#~ msgid "DATABASE" +#~ msgstr "DATENBANK" + +#~ msgid "DOWNLOAD" +#~ msgstr "DOWNLOAD" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "in Repositories" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Datenbank-Synchronisationsfehler, kann nicht fortfahren." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Örtliche Datenbankrevision ist gegegenwärtig bei" + +#~ msgid "choose on what branch operating" +#~ msgstr "wähle den zu benutzenden Zweig" + +#~ msgid "package repositories handling functions" +#~ msgstr "Paket-Repositories Verarbeitungsfunktionen" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "synchronisiere Paket-Repositories über primäre Spiegel" + +#~ msgid "repository handling functions" +#~ msgstr "Paket-Repositorien Verarbeitungsfunktionen" + +#~ msgid "no package specified." +#~ msgstr "kein Paket angegeben." + +#~ msgid "Enabling" +#~ msgstr "Aktiviere" + +#~ msgid "already enabled" +#~ msgstr "bereits aktiviert" + +#~ msgid "Disabling" +#~ msgstr "Deaktiviere" + +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#~ msgid "already disabled" +#~ msgstr "bereits deaktiviert" + +#~ msgid "Invalid syntax." +#~ msgstr "Ungültiger Syntax." + +#~ msgid "No valid repository specified." +#~ msgstr "Keine gültiges Repositorium angegeben" + +#~ msgid "No packages selected." +#~ msgstr "Kein Paket ausgewählt." + +#~ msgid "Masking" +#~ msgstr "Maskieren" + +#~ msgid "Unmasking" +#~ msgstr "Demaskieren" + +#~ msgid "Matching packages to remove" +#~ msgstr "Suche entsprechende Pakete zum Entfernen" + +#~ msgid "Not enough parameters" +#~ msgstr "Nicht genug Parameter" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "" +#~ "Dies sind die Pakete, welche aus der Datenbank entfernt werden würden" + +#~ msgid "Removing selected packages" +#~ msgstr "Entferne ausgewähltes Paket" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "Pakete entfernt. Um binäre Pakete zu entfernen, starte Activator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Dies sind die zur Entfernung vorgesehenen eingespeisten Pakete" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "Wechsle branch, sei sicher dass deine Pakete synchronisiert sind" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Sammle Pakete, welche markiert werden würden" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Dies sind die Pakete, welche markiert werden würden" + +#~ msgid "No valid repositories specified." +#~ msgstr "Keine gültigen Repositories angegeben" + +#~ msgid "Invalid repositories specified." +#~ msgstr "Ungültige Repositorien angegeben." + +#~ msgid "Creating empty database to" +#~ msgstr "Erstelle leere Datenbank in" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Kann bereits existierende Datei nicht überschreiben" + +#~ msgid "Bumping Repository database" +#~ msgstr "Versionssprung der Repository-Datenbenk" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "" +#~ "Dies sind die Pakete, deren Status auf \"eingespeist\" geändert werden " +#~ "würde" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Willst du sie jetzt transformieren ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformiere aus Datenbank" + +#~ msgid "Database transform complete" +#~ msgstr "Datenbanktransformierung beendet" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Dies sind die Pakete, die installiert/aktualisiert würden" + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "Dies sind die neu verfügbaren Pakete, sei es aktualisierbar oder bisher " +#~ "nicht installiert" + +#~ msgid "No package sets found" +#~ msgstr "Keine Paketsets gefunden" + +#~ msgid "package set not found" +#~ msgstr "Paketset nicht gefunden" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Datenbanktransformierung beendet" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Also, Liebchen, welche Pakete möchtest du entfernen?" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Also, Liebchen, welche Pakete möchtest du hinzufügen?" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Entropy Server-Schnittstelle muss als root ausgeführt werden" #~ msgid "Barrierefreiheit" #~ msgstr "Zugreifbarkeit" @@ -10076,9 +10503,6 @@ msgstr "_Lade Paketmanager" #~ msgid "empty username" #~ msgstr "leerer Benutzername" -#~ msgid "user not found" -#~ msgstr "Benutzer nicht gefunden" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "Du musst dich auf der Webseite einloggen um das Kennwortformat zu ändern" @@ -10156,9 +10580,6 @@ msgstr "_Lade Paketmanager" #~ msgid "EAPI3 Service status" #~ msgstr "EAPI3 Service Status" -#~ msgid "remote repository suddenly locked" -#~ msgstr "entferntes Repositorium wurde plötzlich verriegelt" - #~ msgid "EAPI3 Service" #~ msgstr "EAPI3 Service" @@ -10520,9 +10941,6 @@ msgstr "_Lade Paketmanager" #~ msgid "From repository" #~ msgstr "Vom Repositorium" -#~ msgid "To repository" -#~ msgstr "Nach Repositorium" - #~ msgid "Copy instead of move?" #~ msgstr "Kopieren anstelle von verschieben?" @@ -10574,18 +10992,9 @@ msgstr "_Lade Paketmanager" #~ msgid "Check mode" #~ msgstr "Prüfmodus" -#~ msgid "Get repository notice board" -#~ msgstr "Beziehe Schwarzes Brett des Repositoriums" - -#~ msgid "Remove notice board entry" -#~ msgstr "Entferne Eintrag vom Notizbrett" - #~ msgid "Entry Identifiers" #~ msgstr "Eintrags Identifizierer" -#~ msgid "Add notice board entry" -#~ msgstr "Füge Notizbrett-Eintrag hinzu" - #~ msgid "Notice link" #~ msgstr "Notiz-Link" @@ -10671,9 +11080,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Previous database copied to file" #~ msgstr "Alte Datenbank kopiert in Datei" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Alle Repositories waren bereits am aktuellsten Stand." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "Einige Repositories waren bereist am aktuellsten Stand, andere wurden " @@ -11009,9 +11415,6 @@ msgstr "_Lade Paketmanager" #~ msgid "No valid repositories" #~ msgstr "Keine gültigen Repositories" -#~ msgid "not available" -#~ msgstr "Nicht verfügbar" - #~ msgid "is empty" #~ msgstr "ist leer" @@ -11102,9 +11505,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Execute" #~ msgstr "führe aus" -#~ msgid "Destination repository" -#~ msgstr "Zielrepository" - #~ msgid "Copy/move packages" #~ msgstr "Kopiere/entfernte Pakete" @@ -11182,9 +11582,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Kann Pakete nicht von anderen Repositories verschieben/löschen" -#~ msgid "Execute copy" -#~ msgstr "Führe Kopieren aus" - #~ msgid "Entropy packages move/copy" #~ msgstr "verschiebe/kopiere Entropy Pakete" @@ -11197,9 +11594,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Insert your new notice board entry" #~ msgstr "Gib deinen neuen Eintrag für das Schwarze Brett ein" -#~ msgid "Server" -#~ msgstr "Server" - #~ msgid "current revision" #~ msgstr "aktuelle Revision" @@ -11218,9 +11612,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Choose the execution mode" #~ msgstr "Wähle den Ausführungsmodus" -#~ msgid "Commit message" -#~ msgstr "Übergebe Nachricht" - #, fuzzy #~ msgid "Pretend mode" #~ msgstr "Erstellt" @@ -11302,9 +11693,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Wähle das Repository" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Wähle Repositories, die du durchsuchen willst" @@ -11325,9 +11713,6 @@ msgstr "_Lade Paketmanager" #~ msgid "You must now either press the" #~ msgstr "Drücke jetzt entweder den" -#~ msgid "Update Repositories" -#~ msgstr "Aktualisiere Repositories" - #~ msgid "or the" #~ msgstr "oder den" @@ -11410,10 +11795,6 @@ msgstr "_Lade Paketmanager" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Eine gültige TextInterface-basierende Instanz wird benötigt" -#, fuzzy -#~ msgid "Cannot setup cache directory" -#~ msgstr "kann Spiegel-Verzeichnis nicht erstellen" - #, fuzzy #~ msgid "A valid Client interface instance is needed" #~ msgstr "Eine gültige TextInterface-basierende Instanz wird benötigt" @@ -11567,10 +11948,6 @@ msgstr "_Lade Paketmanager" #~ msgid "Downloading packages system mask" #~ msgstr "Lade Paketmaske herunter" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Lade Repository-Datenbank herunter" - #, fuzzy #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Lösche alte Paketdateien..." @@ -11609,9 +11986,6 @@ msgstr "_Lade Paketmanager" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "Zähler für atom ist doppelt vorhanden, ignoriere" -#~ msgid "file not found" -#~ msgstr "Datei nicht gefunden" - #~ msgid "invalid checksum" #~ msgstr "ungültige Prüfsumme" diff --git a/misc/po/entropy.pot b/misc/po/entropy.pot index 27334fc82..d56a3abde 100644 --- a/misc/po/entropy.pot +++ b/misc/po/entropy.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,36 +17,36 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "" -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -55,19 +55,19 @@ msgstr "" msgid "ATTENTION" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "" @@ -242,16 +242,16 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "" @@ -300,7 +300,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -361,7 +361,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -395,7 +395,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "" @@ -434,7 +434,7 @@ msgid "Error calculating dependencies" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "" @@ -496,460 +496,460 @@ msgstr "" msgid "setting directory to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -962,8 +962,8 @@ msgid "download path" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "" @@ -971,685 +971,696 @@ msgstr "" msgid "failed to download from mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 msgid "failed to unpack" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 msgid "dependencies test reported errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 msgid "these packages haven't been removed yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 msgid "Repository updated anyway" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 msgid "initializing repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 msgid "Repository is corrupted!" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 msgid "these are the missing dependencies" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 msgid "no missing dependencies !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 msgid "Do you agree?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1657,141 +1668,142 @@ msgstr "" msgid "Yes" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "" @@ -1871,8 +1883,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "" @@ -2256,7 +2267,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "" @@ -2314,16 +2325,8 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -2655,7 +2658,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "" @@ -2932,75 +2935,75 @@ msgstr "" msgid "installing" msgstr "" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "" @@ -3009,87 +3012,87 @@ msgstr "" msgid "Entropy needs your attention" msgstr "" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "" -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "" -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "" -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "" @@ -3244,16 +3247,18 @@ msgstr "" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3375,7 +3380,6 @@ msgstr "" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "" @@ -3425,7 +3429,7 @@ msgid "Error while creating package for" msgstr "" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "" @@ -3550,7 +3554,7 @@ msgstr "" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "" @@ -3562,7 +3566,7 @@ msgstr "" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "" @@ -3573,7 +3577,6 @@ msgstr "" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "" @@ -3602,8 +3605,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3750,8 +3753,9 @@ msgstr "" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "" @@ -3810,7 +3814,7 @@ msgstr "" msgid "Package Set Search" msgstr "" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "" @@ -3887,7 +3891,7 @@ msgstr "" msgid "Checksum" msgstr "" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "" @@ -3994,7 +3998,7 @@ msgid "repository already enabled" msgstr "" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "" @@ -4058,7 +4062,7 @@ msgstr "" msgid "never synced" msgstr "" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "" @@ -4107,24 +4111,25 @@ msgstr "" msgid "Unhandled exception" msgstr "" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "" @@ -4134,7 +4139,8 @@ msgstr "" msgid "Exit" msgstr "" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "" @@ -4144,7 +4150,7 @@ msgid "Notice board" msgstr "" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "" @@ -4166,8 +4172,7 @@ msgid "Type a number." msgstr "" #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "" @@ -4284,7 +4289,7 @@ msgid "Unique files that would be automerged" msgstr "" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "" @@ -4301,7 +4306,7 @@ msgstr "" msgid "Please logout first" msgstr "" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4309,7 +4314,7 @@ msgstr "" msgid "Username" msgstr "" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4317,7 +4322,7 @@ msgstr "" msgid "Password" msgstr "" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4328,7 +4333,7 @@ msgstr "" msgid "Login aborted. Not logged in." msgstr "" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4533,7 +4538,7 @@ msgid "Installed packages database not available" msgstr "" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4549,15 +4554,15 @@ msgstr "" msgid "No System Databases found" msgstr "" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" @@ -4833,28 +4838,23 @@ msgstr "" msgid "Go to hell." msgstr "" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 msgid "force colorized output" msgstr "" @@ -4862,8 +4862,7 @@ msgstr "" msgid "print a bash completion script to stdout" msgstr "" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "" @@ -4915,7 +4914,7 @@ msgstr "" msgid "show respositories status" msgstr "" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "" @@ -4954,8 +4953,7 @@ msgstr "" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "" @@ -4963,8 +4961,7 @@ msgstr "" msgid "just download packages" msgstr "" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "" @@ -5141,7 +5138,7 @@ msgstr "" msgid "configure one or more installed packages" msgstr "" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "" @@ -5157,7 +5154,7 @@ msgstr "" msgid "look for missing libraries" msgstr "" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5185,7 +5182,7 @@ msgstr "" msgid "search from what package a file belongs" msgstr "" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "" @@ -5193,13 +5190,11 @@ msgstr "" msgid "search what packages depend on the provided atoms" msgstr "" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "" @@ -5239,8 +5234,7 @@ msgstr "" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" @@ -5256,8 +5250,7 @@ msgstr "" msgid "show atoms needing the provided libraries" msgstr "" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "" @@ -5269,26 +5262,23 @@ msgstr "" msgid "show packages owning the provided tags" msgstr "" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "" @@ -5362,7 +5352,7 @@ msgid "" "generate installed packages database using files on the system [last hope]" msgstr "" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5379,485 +5369,159 @@ msgid "restore a previously backed up Entropy installed packages database" msgstr "" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" msgstr "" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." msgstr "" -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "" -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " "logged)" msgstr "" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" msgstr "" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." msgstr "" -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -5866,7 +5530,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "" @@ -6006,10 +5669,7 @@ msgstr "" msgid "atom" msgstr "" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "" @@ -6034,6 +5694,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "" @@ -6261,7 +5922,7 @@ msgstr "" msgid "These are the packages that would be masked" msgstr "" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "" @@ -6297,8 +5958,7 @@ msgstr "" msgid "Would you like to calculate dependencies ?" msgstr "" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "" @@ -6346,7 +6006,10 @@ msgstr "" msgid "Libraries/Executables statistics" msgstr "" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "" @@ -6354,684 +6017,889 @@ msgstr "" msgid "Would you like to install them ?" msgstr "" -#: ../../server/reagent.py:42 -msgid "show current repositories status" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" msgstr "" -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" +#: ../../server/eit/commands/test.py:48 +msgid "available tests" msgstr "" -#: ../../server/reagent.py:72 -msgid "(re)initialize the current repository" +#: ../../server/eit/commands/test.py:51 +msgid "dependencies test" msgstr "" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" +#: ../../server/eit/commands/test.py:55 +msgid "libraries test" msgstr "" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" +#: ../../server/eit/commands/test.py:57 +msgid "dump results to file" msgstr "" -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" +#: ../../server/eit/commands/test.py:61 +msgid "library linking test (using repository metadata)" msgstr "" -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +msgid "package names" msgstr "" -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" +#: ../../server/eit/commands/test.py:75 +msgid "verify local packages integrity" msgstr "" -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/reagent.py:120 -msgid "look for missing libraries (scan system)" +#: ../../server/eit/commands/test.py:84 +msgid "verify remote packages integrity" msgstr "" -#: ../../server/reagent.py:122 -msgid "look for missing libraries (scan repository metadata)" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" +#: ../../server/eit/commands/query.py:55 +msgid "execute query" msgstr "" -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" +#: ../../server/eit/commands/query.py:56 +msgid "available queries" msgstr "" -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" +#: ../../server/eit/commands/query.py:59 +msgid "search package tags" msgstr "" -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +msgid "query into given repository only" msgstr "" -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" +#: ../../server/eit/commands/query.py:68 +msgid "tag name" msgstr "" -#: ../../server/server_activator.py:344 -msgid "Notice text" +#: ../../server/eit/commands/query.py:72 +msgid "show libraries (.so) required by matched packages" msgstr "" -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" +#: ../../server/eit/commands/query.py:84 +msgid "show reverse dependencies of packages" msgstr "" -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" +#: ../../server/eit/commands/query.py:93 +msgid "include build dependencies" msgstr "" -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" +#: ../../server/eit/commands/query.py:102 +msgid "search through package sets" msgstr "" -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" +#: ../../server/eit/commands/query.py:114 +msgid "package set name" msgstr "" -#: ../../server/server_activator.py:458 -msgid "Repositories lock complete" +#: ../../server/eit/commands/query.py:118 +msgid "search packages through their description" msgstr "" -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" +#: ../../server/eit/commands/query.py:124 +msgid "verbose output, show more information" msgstr "" -#: ../../server/server_activator.py:473 -msgid "Repositories unlock complete" +#: ../../server/eit/commands/query.py:130 +msgid "package description" msgstr "" -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" +#: ../../server/eit/commands/query.py:174 +msgid "Nothing found for" msgstr "" -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" +#: ../../server/eit/commands/query.py:220 +msgid "libraries found" msgstr "" -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" +#: ../../server/eit/commands/query.py:313 +msgid "sets found" msgstr "" -#: ../../server/server_activator.py:521 -msgid "DATABASE" +#: ../../server/eit/commands/query.py:347 +msgid "packages found" msgstr "" -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" +#: ../../server/eit/commands/query.py:356 +msgid "miscellaneous package metadata queries" msgstr "" -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -msgid "Syncing repository" -msgstr "" - -#: ../../server/server_activator.py:566 -msgid "Repositories sync error, cannot continue." -msgstr "" - -#: ../../server/server_activator.py:588 -msgid "Cleaning unavailable packages from repository" -msgstr "" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" - -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -msgid "Remote Entropy Repository Status" -msgstr "" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "" - -#: ../../server/server_activator.py:615 -msgid "Local revision currently at" -msgstr "" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" -msgstr "" - -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "" - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "" - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "" - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "" - -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "" - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 msgid "unstaged packages" msgstr "" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 msgid "add" msgstr "" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 msgid "switch injected" msgstr "" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 +msgid "show repository status" msgstr "" -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" +#: ../../server/eit/commands/list.py:56 +msgid "output more package info" msgstr "" -#: ../../server/server_reagent.py:1318 -msgid "package set not found" +#: ../../server/eit/commands/list.py:59 +msgid "only list injected packages" msgstr "" -#: ../../server/server_query.py:53 ../../server/server_query.py:77 +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "" + +#: ../../server/eit/commands/list.py:124 +msgid "No packages" +msgstr "" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +msgid "search packages in given repository" +msgstr "" + +#: ../../server/eit/commands/own.py:92 +msgid "search packages owning paths" +msgstr "" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +msgid "source repository" +msgstr "" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +msgid "destination repository" +msgstr "" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +msgid "include dependencies" +msgstr "" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +msgid "package name" +msgstr "" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 #: ../../sulfur/src/sulfur/packages.py:1135 msgid "Nothing found" msgstr "" -#: ../../server/eit/main.py:80 -msgid "superuser access required" +#: ../../server/eit/commands/reset.py:52 +msgid "do not pull the remote repository" msgstr "" -#: ../../server/eit/commands/status.py:178 -msgid "show repository status" +#: ../../server/eit/commands/reset.py:79 +msgid "reset error" msgstr "" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/reset.py:84 +msgid "local repository revision reset complete" +msgstr "" + +#: ../../server/eit/commands/reset.py:95 +msgid "reset repository to remote status" +msgstr "" + +#: ../../server/eit/commands/checkout.py:65 +msgid "switch from a repository to another" +msgstr "" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +msgid "sync with remote repository" +msgstr "" + +#: ../../server/eit/commands/bump.py:59 +msgid "Bumping repository" +msgstr "" + +#: ../../server/eit/commands/bump.py:70 +msgid "bump repository revision, force push" +msgstr "" + +#: ../../server/eit/commands/push.py:68 +msgid "push all the repositories" +msgstr "" + +#: ../../server/eit/commands/push.py:70 +msgid "push as fake repository" +msgstr "" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:148 +msgid "Enter the commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:169 +msgid "Entropy Repository Status" +msgstr "" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "" + +#: ../../server/eit/commands/push.py:179 +msgid "Remote" +msgstr "" + +#: ../../server/eit/commands/push.py:185 +msgid "Local" +msgstr "" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +msgid "execute given action" +msgstr "" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +msgid "available actions" +msgstr "" + +#: ../../server/eit/commands/notice.py:52 +msgid "add notice-board entry" +msgstr "" + +#: ../../server/eit/commands/notice.py:58 +msgid "remove notice-board entry" +msgstr "" + +#: ../../server/eit/commands/notice.py:64 +msgid "show notice-board" +msgstr "" + +#: ../../server/eit/commands/notice.py:164 +msgid "no URL" +msgstr "" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +msgid "URL" +msgstr "" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "" + +#: ../../server/eit/commands/notice.py:375 +msgid "manage repository notice-board" +msgstr "" + +#: ../../server/eit/commands/merge.py:45 +msgid "repository branch" +msgstr "" + +#: ../../server/eit/commands/merge.py:47 +msgid "work inside given repository" +msgstr "" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +msgid "repack to given repository" +msgstr "" + +#: ../../server/eit/commands/repack.py:59 +msgid "rebuild packages in repository" +msgstr "" + +#: ../../server/eit/commands/commit.py:57 msgid "selectively pick changes" msgstr "" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" msgstr "" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "" + +#: ../../server/eit/commands/commit.py:145 msgid "Invalid package" msgstr "" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +msgid "Zarro thinggz to do" +msgstr "" + +#: ../../server/eit/commands/commit.py:163 msgid "These would be marked as injected" msgstr "" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 msgid "Transforming" msgstr "" -#: ../../server/eit/commands/commit.py:206 -msgid "Transform complete" +#: ../../server/eit/commands/commit.py:191 +msgid "Action completed" msgstr "" -#: ../../server/eit/commands/commit.py:222 -msgid "What packages do you want to remove ?" +#: ../../server/eit/commands/commit.py:202 +msgid "expired" msgstr "" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:209 +msgid "Select packages for removal" +msgstr "" + +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "" + +#: ../../server/eit/commands/commit.py:223 msgid "These would be removed from repository" msgstr "" -#: ../../server/eit/commands/commit.py:260 -msgid "What packages do you want to add ?" +#: ../../server/eit/commands/commit.py:248 +msgid "Select packages to add" msgstr "" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "" + +#: ../../server/eit/commands/commit.py:264 msgid "These would be added or updated" msgstr "" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "" + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "" + +#: ../../server/eit/commands/commit.py:364 msgid "commit changes to repository" msgstr "" +#: ../../server/eit/commands/log.py:58 +msgid "log is not available" +msgstr "" + +#: ../../server/eit/commands/log.py:72 +msgid "show log for repository" +msgstr "" + +#: ../../server/eit/commands/match.py:94 +msgid "match packages in repositories" +msgstr "" + +#: ../../server/eit/commands/add.py:42 +msgid "add to given repository" +msgstr "" + +#: ../../server/eit/commands/add.py:62 +msgid "commit to repository the provided packages" +msgstr "" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +msgid "show current status" +msgstr "" + +#: ../../server/eit/commands/lock.py:85 +msgid "Mirrors status" +msgstr "" + +#: ../../server/eit/commands/lock.py:110 +msgid "server" +msgstr "" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +msgid "lock repository" +msgstr "" + +#: ../../server/eit/commands/lock.py:180 +msgid "unlock repository" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +msgid "show reverse dependency graph for packages" +msgstr "" + +#: ../../server/eit/commands/cleanup.py:67 +msgid "clean expired packages from a repository" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +msgid "Removing unavailable packages overriding defaults" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:74 +msgid "Users with old repositories will need to update" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:90 +msgid "clean expired/removed packages from repository" +msgstr "" + +#: ../../server/eit/commands/files.py:91 +msgid "files found" +msgstr "" + +#: ../../server/eit/commands/files.py:100 +msgid "show files owned by packages" +msgstr "" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +msgid "inject into given repository" +msgstr "" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "" + +#: ../../server/eit/commands/remove.py:123 +msgid "remove packages from repository" +msgstr "" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "" + +#: ../../server/eit/commands/deps.py:230 +msgid "edit dependencies for packages in repository" +msgstr "" + +#: ../../server/eit/commands/cp.py:58 +msgid "package dependency" +msgstr "" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +msgid "Considering all the packages" +msgstr "" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/graph.py:92 +msgid "show dependency graph for packages" +msgstr "" + +#: ../../server/eit/commands/key.py:50 +msgid "execute action" +msgstr "" + +#: ../../server/eit/commands/key.py:54 +msgid "create keypair for repository and packages" +msgstr "" + +#: ../../server/eit/commands/key.py:60 +msgid "delete keypair (and signatures) from repository" +msgstr "" + +#: ../../server/eit/commands/key.py:66 +msgid "show keypair status for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:72 +msgid "sign packages in repository using current keypair" +msgstr "" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +msgid "public key path" +msgstr "" + +#: ../../server/eit/commands/key.py:90 +msgid "export the repository public key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +msgid "Importing keypair" +msgstr "" + +#: ../../server/eit/commands/key.py:372 +msgid "Another keypair already exists" +msgstr "" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +msgid "Now sign all the packages in it" +msgstr "" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:496 +msgid "manage repository GPG keys" +msgstr "" + +#: ../../server/eit/commands/inject.py:44 +msgid "package paths" +msgstr "" + +#: ../../server/eit/commands/inject.py:72 +msgid "no such file or directory" +msgstr "" + +#: ../../server/eit/commands/inject.py:85 +msgid "unsupported extension" +msgstr "" + +#: ../../server/eit/commands/inject.py:91 +msgid "no valid package paths" +msgstr "" + +#: ../../server/eit/commands/inject.py:114 +msgid "inject package files into repository" +msgstr "" + +#: ../../server/eit/commands/branch.py:54 +msgid "switch to given branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:59 +msgid "from branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +msgid "Invalid branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +msgid "manage repository branches" +msgstr "" + +#: ../../server/eit/commands/repo.py:46 +msgid "show current repository" +msgstr "" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7088,112 +6956,118 @@ msgstr "" msgid "Application" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 msgid "Successfully logged in." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 msgid "Already voted" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 msgid "Cannot disable repository!" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "" @@ -7582,6 +7456,10 @@ msgstr "" msgid "Masked package" msgstr "" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "" diff --git a/misc/po/es.po b/misc/po/es.po index 11e0fb856..efe60cedb 100644 --- a/misc/po/es.po +++ b/misc/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-05-14 19:39-0000\n" "Last-Translator: Daniel Halens Rodriguez \n" "Language-Team: Spanish \n" @@ -17,36 +17,36 @@ msgstr "" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Sincronizando la base de datos actual" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espera por favor" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Eliminando entrada" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Añadiendo entrada" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Exportando la tabla de la base de datos" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Exportación de la base de datos completada." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -55,22 +55,22 @@ msgstr "Exportación de la base de datos completada." msgid "ATTENTION" msgstr "ATENCIÓN" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 #, fuzzy msgid "Spm error occured" msgstr "mirror desbloqueado" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "usuario no encontrado" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Generando metadatos, espera por favor." -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Generando metadatos, espera por favor." @@ -252,16 +252,16 @@ msgstr "Recopilando los contadores de Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "error" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "no encontrado" @@ -313,7 +313,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -377,7 +377,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -411,7 +411,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "no existe" @@ -452,7 +452,7 @@ msgid "Error calculating dependencies" msgstr "Error calculando las dependencias" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "no soportado" @@ -516,472 +516,472 @@ msgstr "conectado al mirror" msgid "setting directory to" msgstr "cambiando el directorio a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Interfaz de Servidores Mirror de Entropy cargada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "repositorio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Mirror de paquetes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 #, fuzzy msgid "looking for file in mirror" msgstr "Trabajando en el mirror" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "desbloqueando" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "bloqueando" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "mirror" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "mirror ya estaba bloqueado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "mirror ya estaba desbloqueado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "mirror para la descarga" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "mirror ya bloqueado para la descarga" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "mirror ya desbloqueado para la descarga" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "para descargar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "mirror bloqueado correctamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "mirror no bloqueado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "mirror desbloqueado correctamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "error desbloqueando" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "mirror no desbloqueado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "conectando para desargar el paquete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "descargando el paquete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "paquete" # [server] -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 #, fuzzy msgid "is not listed in the repository !" msgstr "no está en el repositorio !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "verificando la comprobación de suma del paquete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "descargado correctamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "su comprobación de suma no coincide. Descargando de nuevo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "parece roto. Considera la opción de reempaquetarlo. Abandonando." -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "el mirror no tiene un archivo de revisión de la base de datos válido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "no se pudo descargar la revisión del repositorio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "el mirror no tiene un archivo de revisión válido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "esperando hasta 2 minutos antes de abandonar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "mirror desbloqueado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Estadísticas locales" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "directorio de subida" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "archivos listos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "directorio de paquetes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "subida" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "descargado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "eliminar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Paquetes que serán eliminados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Paquetes que serán movido localmente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Paquetes que serán subidos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Tamaño total de lo que será eliminado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Tamaño total de la subida" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Tamaño total de la descarga" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Estadísticas remotas para" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "paquetes remotos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "archivos guardados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Calculando colas" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "eliminando paquete+hash" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "sincronización" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "eliminación completada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "copiando archivo+hash al repositorio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "errores en la subida" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "razón" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "subida completada correctamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "errores en la descarga" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "descarga completada correctamente" # [server] -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 #, fuzzy msgid "QA checking package file" msgstr "Comprobando QA del paquete" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "comenzando la sincronización de paquetes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "sincronización de paquetes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "error de socket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "nada que hacer en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Expandiendo colas" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "nada que sincronizar en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "¿ Quieres ejecutar los pasos descritos ?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "¡ interrupción del teclado !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 #, fuzzy msgid "you must package them again" msgstr "¿ Quieres empaquetarlos ahora ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "excepción capturada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "¡al menos un mirror sincronizó correctamente!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "ordenado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "recopilando los paquetes que han expirado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "recopilando los paquetes que han expirado en las ramas seleccionadas" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "nada que eliminar en esta rama" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "estos son los paquetes que han expirado" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "¿ Desea continuar ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "eliminando los paquetes remotamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "errores al eliminar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "eliminando paquetes localmente" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "eliminados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "descargando el tablón de anuncios desde los mirrors a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "tablón de anuncios correctamente descargado desde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "subiendo el tablón de anuncios desde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "fallo en la subida del tablón de anuncios en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "subida del tablón de anuncios correcta" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "subiendo el tablón de anuncios desde" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "fallo en la subida del tablón de anuncios en" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "subida del tablón de anuncios correcta" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -995,8 +995,8 @@ msgid "download path" msgstr "ruta de descarga" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "errores" @@ -1004,300 +1004,312 @@ msgstr "errores" msgid "failed to download from mirror" msgstr "no se pudo descargar desde el mirror" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Imposible desempaquetar" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Problemas con las treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Metiendo los datos viejos de nuevo" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "sets de paquetes configurados" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Ninguno configurado" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "" "creando el volcado de la base de datos comprimida + comprobación de suma" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "repositorio" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 #, fuzzy msgid "dump light checksum" msgstr "volcado de la comprobación de suma" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "abridor" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "comprimiendo la base de datos + comprobación de suma" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "datos de repositorio compuesto" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "Comprobación de suma de la base de datos del repositorio" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "comprobación de suma comprimida" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "preparando la base de datos descomprimida para la subida" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "EAPI deshabilitada" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "preparándose para subir la base de datos al mirror" # [server] -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "subida fallida. No se desbloqueará ni continuará" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "ya estaba deshabilitado" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Nombre del repositorio" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problemas con la descarga" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "lector del tablón de anuncios del repositorio" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "sets de paquetes configurados" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() devolvió errores" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Paquetes que serán eliminados" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problemas con la subida" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "sincronización de la base de datos completada correctamente" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 #, fuzzy msgid "mirrors have not been unlocked. Sync them." msgstr "Los mirrors no han sido desbloqueados. Recuerda sincronizarlos." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 #, fuzzy msgid "cannot store updates RSS cache" msgstr "no se pudieron actualizar los datos del árbol de actualizaciones" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INYECCIÓN" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "ha sido inyectado" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 #, fuzzy msgid "quickpkg manually to update embedded db" msgstr "" "Debes hacerle quickpkg manualmente para actualizar la base de datos embebida" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "La base de datos del repositorio fue actualizada de todas formas" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "no es un repositorio configurado" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "no se puede usar como id porque es una id de repositorio protegida" -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Revisión del repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "dejando por defecto 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "sets de paquetes configurados" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "no se pudo hacer coincidir" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Inicializando la base de datos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "¿ Quieres inicializar tu repositorio por defecto ?" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 #, fuzzy msgid "Invalid tag specified" msgstr "etiqueta especificada inválida" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 #, fuzzy msgid "flushing back selected packages from branches" msgstr "copiando de nuevo los paquetes seleccionados desde las ramas" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "¡ nada que hacer" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 #, fuzzy msgid "these are the packages that will be flushed" msgstr "estos son los paquetes que serán enviados" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "comprobando el hash del paquete" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "el hash no coincide para" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "md5 incorrecto" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 #, fuzzy msgid "error downloading packages from mirrors" msgstr "error descargando paquetes desde los mirrors" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "trabajando en la rama" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "actualizando paquete" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 #, fuzzy msgid "package flushed" msgstr "paquete enviado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "No se pudo actualizar la base de datos del sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Preparándose para mover los paquetes seleccionados a" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Preparándose para copiar los paquetes seleccionados a" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 #, fuzzy msgid "" "all old packages with conflicting scope will be removed from destination " @@ -1307,472 +1319,471 @@ msgstr "" "de destino salvo que sean inyectados" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 #, fuzzy msgid "new tag" msgstr "nueva etiqueta" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Dependencias inversas" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 #, fuzzy msgid "dependency" msgstr "dependencia" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "cambiando" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "no se puede cambiar. Paquete no encontrado, omitiendo" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "moviendo el archivo" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "cargando datos desde la base de datos fuente" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "no disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "inyectando datos en la base de datos de destino" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "eliminando entrada de la base de datos fuente" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "correctamente manejado el atom" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Inyectando metadatos de Entropy en los paquetes creados" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "inyectando metadatos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "inyección completada" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "eliminando paquete" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Verificación de integridad de los paquetes seleccionados" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 #, fuzzy msgid "All the packages in repository will be checked." msgstr "Todos los paquetes en el repositorio serán comprobados." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Esta es la lista de paquetes que serán comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Trabajando en el mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "comprobando el hash" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "verificación de la firma de" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NO está en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Esta es la lista de paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Estadísticas" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Número de paquetes comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Número de paquetes en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Número de paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "comprobando el estado de" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "está corrupto. Se ha almacenado la suma de verificación" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "paquetes comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "paquetes en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "paquetes rotos" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "paquetes descargados" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "descargas fallidas" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "usando Paquetes en el repositorio" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Todos los paquetes en el repositorio serán comprobados." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "no disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "no está disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Uniendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Uniendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "Paquete enmascarado" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "subido/ignorado" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Comenzando a descargar los archivos desaparecidos" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Buscando los paquetes rotos/desaparecidos en otro mirror" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 #, fuzzy msgid "Binary packages downloaded successfully." msgstr "Paquetes binarios descargados correctamente." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Estos son los paquetes que no se pudieron encontrar online" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "No serán comprobados" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Por favor, fija tu rama en" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "y vuelve a intentarlo" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copiando la base de datos (si no existe)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Conmutando paquetes" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Ignorando" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "ya estaba en la rama" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "ciclo de migración completado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "" "Ejecutando test de paquetes huérfanos del Administrador de Paquetes Fuente" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Registrando paquete" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 #, fuzzy msgid "not found anymore" msgstr "no encontrado" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 #, fuzzy msgid "Packages string" msgstr "Cadena de los Paquetes" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Comprobando" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Ejecutando test de dependencias" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Dependencias no encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requeridas por" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "por el repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Todas las dependencias están satisfechas. Todo está bien." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 #, fuzzy msgid "Broken and matched packages list" msgstr "No coincide ningún paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "Volcando las revisiones actuales al archivo" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "El sistema está en buen estado" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "" "Haciendo coincidir bibliotecas con el Administrador de Paquetes Fuente, " "espera por favor" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Estos son los paquetes que coinciden" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "No coincide ningún paquete" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Tu repositorio por defecto no está inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "¿ Quieres inicializar tu repositorio por defecto ?" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 #, fuzzy msgid "Continuing with an uninitialized repository" msgstr "Continuando con un repositorio no inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "La base de datos de Entropy ya estaba bloqueada por ti :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Bloqueando y sincronizando la base de datos de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Tabla de estado de los mirrors" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Desbloqueado" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Bloqueado" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "no se pudo bloquear el mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "el diccionario repodata está corrupto" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Omitiendo repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Inicializando una base de datos vacía" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Administrador de Repositorios de Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "ha sido inicializado correctamente" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "añadiendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "paquete añadido" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "revisión" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 #, fuzzy msgid "manual dependencies for" msgstr "Sin dependencias" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Dependencias no encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Dependencias extraviadas" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "¿ Estás seguro ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1780,150 +1791,151 @@ msgstr "¿ Estás seguro ?" msgid "Yes" msgstr "Si" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Resolviendo metadatos" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Bloqueo de las bases de datos completado" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Excepción capturada, cerrando tareas" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "repositorio del servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "repositorio community" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Instancia de la Interfaz del Servidor de Entropy en el repositorio" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "rama actual" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Repositorios configurados actualmente" # [server] -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 #, fuzzy msgid "GPG key expired" msgstr "expirados" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "arréglalo por favor" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "archivos de conf." #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "comprobando el sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "hay archivos de configuración que aún no han sido actualizados" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "Para ser añadido" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "hace las reglas de las dependencias mas estrictas" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "actualizando paquete" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "añadiendo paquete" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "eliminando paquete" @@ -2007,8 +2019,7 @@ msgstr "Actualizando la base de datos del sistema usando la id del repositorio" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repositorio" @@ -2414,7 +2425,7 @@ msgstr "Adquiriendo" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "paquetes" @@ -2472,16 +2483,8 @@ msgstr "Configurando" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -2851,7 +2854,7 @@ msgstr "Los repositorios se han actualizado correctamente" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Todo bien" @@ -3146,83 +3149,83 @@ msgstr "la verificación de firma ha fallado, inténtalo mas tarde" msgid "installing" msgstr "instalando" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Ejecutando test de dependencias" # [server] -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "dependencia" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" # [server] -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "dependencia" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "El Repositorio Cliente está Corrupto. Por favor, restaura una copia de " "seguridad." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "no disponible" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask del usuario" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "palabras clave del sistema" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask del usuario" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "package.keywords del repositorio del usuario (todos los paquetes)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "package.keywords del repositorio del usuario" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords del usuario" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 #, fuzzy msgid "completely masked (by keyword?)" msgstr "completamente enmascarado" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "packages.db.mask general del repositorio" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "packages.db.keywords general del repositorio" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "license.mask del usuario" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "desenmascaramiento en vivo del usuario" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "enmascaramiento en vivo del usuario" @@ -3231,90 +3234,90 @@ msgstr "enmascaramiento en vivo del usuario" msgid "Entropy needs your attention" msgstr "Entropy necesita tu atención" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy tiene una pregunta para ti" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interrumpido" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Número seleccionado" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Selecciona una opción por favor" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Descartar todos" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Confirmar" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Añadir ítem" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Añadir ítem" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Eliminar ítem" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Mostrar lista actual" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Tu elección (escribe un número y presiona enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "No has tecleado un número." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Acción inválida." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Cadena a añadir:" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Cadena inválida." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Número del elemento a eliminar:" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Elemento inválido." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Número del elemento a eliminar:" @@ -3491,16 +3494,18 @@ msgstr "Identificador de GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Título" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3630,7 +3635,6 @@ msgstr "No eres" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Parámetros incorrectos" @@ -3680,7 +3684,7 @@ msgid "Error while creating package for" msgstr "Error creando el paquete para" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "No se puede continuar" @@ -3806,7 +3810,7 @@ msgstr "el repositorio no está disponible" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Palabra clave" @@ -3818,7 +3822,7 @@ msgstr "Palabra clave" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Encontradas" @@ -3829,7 +3833,6 @@ msgstr "Encontradas" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "entrada/s" @@ -3863,8 +3866,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -4013,8 +4016,9 @@ msgstr "Búsqueda de Eliminados" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "No se han encontrado paquetes" @@ -4075,7 +4079,7 @@ msgstr "Búsqueda por Slot" msgid "Package Set Search" msgstr "Búsqueda de Sets de Paquetes" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Búsqueda por Etiqueta" @@ -4154,7 +4158,7 @@ msgstr "Descargado" msgid "Checksum" msgstr "Comprobación de suma" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dependencias" @@ -4274,7 +4278,7 @@ msgid "repository already enabled" msgstr "ya estaba habilitado" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "el repositorio no está disponible" @@ -4352,7 +4356,7 @@ msgstr "activo" msgid "never synced" msgstr "nunca sincronizado" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Estado" @@ -4402,24 +4406,25 @@ msgstr "No se han especificado repositorios en" msgid "Unhandled exception" msgstr "Excepción no manejada" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Tablón de anuncios no disponible" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Contenido" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Enlace" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Presiona Enter para continuar" @@ -4429,7 +4434,8 @@ msgstr "Presiona Enter para continuar" msgid "Exit" msgstr "Salir" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Elige una escribiendo su identificador" @@ -4439,7 +4445,7 @@ msgid "Notice board" msgstr "Tablón de anuncios" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "No eres root" @@ -4461,8 +4467,7 @@ msgid "Type a number." msgstr "Escribe un número" #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Archivo de configuración" @@ -4581,7 +4586,7 @@ msgid "Unique files that would be automerged" msgstr "Archivos únicos que serán unidos automáticamente" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Repositorio inválido" @@ -4599,7 +4604,7 @@ msgstr "Ya estás conectado como" msgid "Please logout first" msgstr "Desconectate primero" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4607,7 +4612,7 @@ msgstr "Desconectate primero" msgid "Username" msgstr "Nombre de Usuario" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4615,7 +4620,7 @@ msgstr "Nombre de Usuario" msgid "Password" msgstr "Contraseña" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4627,7 +4632,7 @@ msgstr "Por favor, haz login en" msgid "Login aborted. Not logged in." msgstr "Error de login. No estás conectado." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4850,7 +4855,7 @@ msgid "Installed packages database not available" msgstr "Base de datos de paquetes instalados no disponible" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "está en desuso, es preferible usar" @@ -4866,15 +4871,15 @@ msgstr "Base de Datos del Sistema limpia" msgid "No System Databases found" msgstr "No se encontraron Bases de Datos en el Sistema" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "No se han encontrado bases de datos guardadas" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Elige la base de datos que quieras restaurar" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" "Herramienta de restauración de bases de datos de paquetes instalados de " @@ -5170,28 +5175,23 @@ msgstr "Me rindo, no tienes remedio" msgid "Go to hell." msgstr "Vete al infierno." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Opciones Básicas" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "este mensaje" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "imprime la versión del programa" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "deshabilita la salida con colores" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "deshabilita la salida con colores" @@ -5201,8 +5201,7 @@ msgstr "deshabilita la salida con colores" msgid "print a bash completion script to stdout" msgstr "imprime los archivos rotos en stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Opciones del programa" @@ -5259,7 +5258,7 @@ msgstr "lector del tablón de anuncios del repositorio" msgid "show respositories status" msgstr "muestra el estado de los repositorios" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "busca paquetes en los repositorios" @@ -5299,8 +5298,7 @@ msgstr "actualiza el sistema con los últimos paquetes disponibles" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "pregunta antes de realizar cualquier cambio" @@ -5308,8 +5306,7 @@ msgstr "pregunta antes de realizar cualquier cambio" msgid "just download packages" msgstr "sólo descarga los paquetes" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "sólo hace una prueba de instalación" @@ -5501,7 +5498,7 @@ msgstr "elimina uno o más paquetes" msgid "configure one or more installed packages" msgstr "configura uno o mas paquetes instalados" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "busca dependencias insatisfechas" @@ -5517,7 +5514,7 @@ msgstr "ordena los paquetes por su tamaño en disco" msgid "look for missing libraries" msgstr "busca bibliotecas perdidas" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5545,7 +5542,7 @@ msgstr "realiza otras peticiones en los repositorios y bases de datos locales" msgid "search from what package a file belongs" msgstr "busca a qué paquete pertenece un archivo" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "muestra el changelog de paquetes" @@ -5553,13 +5550,11 @@ msgstr "muestra el changelog de paquetes" msgid "search what packages depend on the provided atoms" msgstr "busca los paquetes que dependen de los atoms proporcionados" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "busca paquetes por su descripción" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "muestra los archivos que pertenecen a los atoms proporcionados" @@ -5603,8 +5598,7 @@ msgstr "Estos son los paquetes instalados" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" "muestra las bibliotecas en tiempo de ejecución requeridas por los atoms " @@ -5622,8 +5616,7 @@ msgstr "muestra el árbol de eliminación para los atoms especificados" msgid "show atoms needing the provided libraries" msgstr "muestra los atoms requeridos por las bibliotecas proporcionadas" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "busca sets de paquetes disponibles" @@ -5635,27 +5628,24 @@ msgstr "muestra los paquetes que posean el slot proporcionado" msgid "show packages owning the provided tags" msgstr "muestra los paquetes que posean la etiqueta proporcionada" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "muestra qué paquetes dependen de los atoms proporcionados" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "muestra más detalles" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "imprime los resultados de forma que puedan ser usados por scripts" @@ -5744,7 +5734,7 @@ msgstr "" "genera la base de datos de paquetes instalados usando los archivos en el " "sistema [última esperanza]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 #, fuzzy msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5770,369 +5760,22 @@ msgstr "" "guardada" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "maneja las características de la parte community" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "funciones de administración de los repositorios community" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "registra el Sistema buscando nuevos paquetes compilados" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analiza el directorio de almacenamiento de Entropy directamente" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "reempaqueta los atoms especificados" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "no pregunta nada excepto cosas críticas" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "administra sólo los atoms especificados" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"añade paquetes binarios al repositorio sin afectar su alcance (multipaquetes)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "funciones de administración de los mirrors de repositorios community" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "sincroniza los paquetes y la base de datos y ordena un poco" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "sincroniza todos los repositorios configurados" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "sincroniza paquetes con los mirrors primarios" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "verifica la integridad de los paquetes" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"sincroniza la base de datos del repositorio actual con los mirrors primarios" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "" -"bloquea la base de datos del repositorio actual (en el lado del servidor)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "" -"desbloquea la base de datos del repositorio actual (en el lado del servidor)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "" -"bloquea la base de datos del repositorio actual (en el lado del cliente)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "" -"desbloquea la base de datos del repositorio actual (en el lado del cliente)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "muestra el estado actual de bloqueo" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" -"elimina los paquetes binarios que no están en repositorio y han expirado" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "administra un repositorio" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(re)inicializa la base de datos del repositorio actual" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "no rellena la base de datos usando los paquetes de los mirrors" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(re)crea la base de datos para el repositorio especificado" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" -"fuerza un aumento de la revisión para la base de datos del repositorio " -"actual manualmente" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "sincroniza la base de datos" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "" -"elimina los atoms proporcionados de la base de datos del repositorio actual" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"elimina los atoms inyectados proporcionados (todos si no se especifica " -"ningún atom)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "crea una base de datos para repositorio en la ruta proporcionada" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "cambia los atoms proporcionados (o world) a la rama especificada" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "verifica la integridad remota de los atoms proporcionados (o world)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "hace una copia de la base de datos actual del repositorio" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "restaura una base de datos del repositorio previamente guardada" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "habilita el repositorio especificado" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "deshabilita el repositorio especificado" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "muestra el estado actual del Interfaz del Servidor" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Paquetes instalados" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "maneja dependencias manuales de paquetes" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"clona un paquete dentro de un repositorio asignándole una etiqueta arbitraria" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "mueve paquetes de un repositorio a otro" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "añade las dependencias" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copia paquetes de un repositorio a otro" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "fija el repositorio por defecto" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "Prueba a actualizar los repositorios e inténtalo de nuevo" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Repositorios configurados actualmente" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -# [server] -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "no está en el repositorio !" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Ordenar por repositorio" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Repositorio de destino" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" -"hace algunas búsquedas en las bases de datos de los repositorios community" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "muestra a qué paquete pertenecen los archivos proporcionados" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "muestra qué paquetes dependen de los atoms proporcionados" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "muestra todos los paquetes del repositorio por defecto" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "busca paquetes en la base de datos por defecto del repositorio" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "muestra los paquetes que contienen las etiquetas especificadas" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "muestra los paquetes que contienen las etiquetas especificadas" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "funciones del administrador de paquetes fuente" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "función de compilación" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compila los paquetes pertenecientes a las categorías proporcionadas" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "sólo muestra los paquetes" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -#, fuzzy -msgid "do not pull old package slots" -msgstr "paquetes descargados" - -# [spm] -#: ../../client/equo.py:360 ../../server/reagent.py:111 -#, fuzzy -msgid "compile packages in provided package set names" -msgstr "" -"compila los paquetes pertenecientes a los nombres de sets proporcionados" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "reconstruye todo" - -# [spm] -#: ../../client/equo.py:363 ../../server/reagent.py:114 -#, fuzzy -msgid "run database update if all went fine" -msgstr "ejecuta update database si todo fue bien" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "ejecuta la sincronización de mirrors si todo está correcto" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "funciones para el manejo del tablón de anuncios" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "añade una nueva entrada al tablón de anuncios" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "elimina una entrada del tablón de anuncios" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "lee el tablón de anuncios actual" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "busca dependencias insatisfechas en los repositorios community" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "verifica la integridad de archivos de paquetes locales" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "maneja las características del Contenido Generado por el Usuario" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "hace login en el repositorio especificado" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "desconecta el usuario del repositorio especificado" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forzar accción" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -6140,78 +5783,70 @@ msgstr "" "administra los documentos de los paquetes para el repositorio seleccionado " "(comentarios, archivos, videos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "adquiere los documentos disponibles para el paquete especificado (ejemplo: " "x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "añade un nuevo documento al paquete especificado (ejemplo: x11-libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "elimina documentos de la base de datos usando sus identificadores" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "administra los votos de los paquetes para el repositorio seleccionado" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "adquiere el voto para el paquete especificado (ejemplo: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "añade un voto para el paquete especificado (ejemplo: x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "maneja la caché de Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "limpia la caché de Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "elimina los paquetes descargados y limpia los directorios y temporales" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "muestra información sobre el sistema" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Debes instalar sys-apps/entropy-server :-)" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "Debes instalar/actualizar sys-apps/entropy-server :-)" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "No se han especificado suficientes parámetros" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 #, fuzzy msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "La Base de Datos de Paquetes Instalados no se encontró o está corrupta. Por " "favor, genérala usando las herramientas de 'equo database'" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -6219,23 +5854,23 @@ msgstr "" "Hola. Mi nombre es Reportador de Bugs. Siento informarte de que Equo ha " "petado. Ya sabes, a veces ocurren errores." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Pero hay algo que puedes hacer para hacer que Equo sea una aplicación mejor." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "-- PROCURA NO ENVIAR EL MISMO INFORME MÚLTIPLES VECES --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Ahora te voy a mostrar que ha sucedido. No te preocupes, estoy aquí para " "ayudarte." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -6243,11 +5878,11 @@ msgstr "" "Ni siquiera puedo escribir en /tmp Por favor, copia el error y envíalo a " "lxnay@sabayon.org" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Por supuesto, estás conectado a Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 #, fuzzy msgid "" "Erm... Can I send the error, along with some information\n" @@ -6258,11 +5893,11 @@ msgstr "" " sobre tu hardware a mis creadores para que puedan arreglarme? (Tu IP será " "registrada)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Vale vale vale vale... Lo siento." -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -6270,19 +5905,19 @@ msgstr "" "Si quieres que te respondamos (y te demos soporte activo), escribe también " "los siguientes datos:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Tu nombre completo:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Tu email:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Qué estabas haciendo:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6290,7 +5925,7 @@ msgstr "" "Muchas gracias. El error ha sido reportado; el problema será solucionado lo " "antes posible." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6299,11 +5934,11 @@ msgstr "" "¡Ouch! No pude enviar el mensaje. He guardado el error en /tmp/equoerror.txt " "Cuando quieras, puedes enviar el archivo a lxnay@sabayon.org" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Las versiones de Equo y Entropy no coinciden" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "¡esto puede hacer que tu sistema explote!" @@ -6312,7 +5947,6 @@ msgstr "¡esto puede hacer que tu sistema explote!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Nada que hacer" @@ -6460,10 +6094,7 @@ msgstr "está roto" msgid "atom" msgstr "atom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "en" @@ -6488,6 +6119,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Estos son los paquetes que deben ser eliminados de forma MANUAL" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Paquetes que serán eliminados" @@ -6720,7 +6352,7 @@ msgstr "Instalación completada" msgid "These are the packages that would be masked" msgstr "Estos son los paquetes que serán marcados" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "¿ Desea continuar ?" @@ -6758,8 +6390,7 @@ msgstr "Eliminación prohibida" msgid "Would you like to calculate dependencies ?" msgstr "¿ Calcular las dependencias ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "¿ Quieres eliminarlos ?" @@ -6810,7 +6441,10 @@ msgstr "10 segundos" msgid "Libraries/Executables statistics" msgstr "Estadísticas de las Bibliotecas/Ejecutables" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "No coincidentes" @@ -6818,775 +6452,1056 @@ msgstr "No coincidentes" msgid "Would you like to install them ?" msgstr "¿Desea instalarlos?" -#: ../../server/reagent.py:42 +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "show current repositories status" -msgstr "muestra el estado de los repositorios" +msgid "available tests" +msgstr "disponible" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "hace algunas búsquedas en las bases de datos del repositorio" - -#: ../../server/reagent.py:55 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "busca paquetes en la base de datos por defecto del repositorio" +msgid "dependencies test" +msgstr "Test de dependencias" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(re)inicializa la base de datos del repositorio actual" +msgid "libraries test" +msgstr "Comprobación de bibliotecas" -#: ../../server/reagent.py:77 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "do not include reverse dependencies" -msgstr "No se pudieron encontrar las dependencias necesarias" +msgid "dump results to file" +msgstr "Volcando las revisiones actuales al archivo" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "cambia el repositorio a la rama especificada" - -#: ../../server/reagent.py:81 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "verifica la integridad remota de los atoms proporcionados (o world)" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "clona" - -#: ../../server/reagent.py:89 -#, fuzzy -msgid "mask given package in given repository" -msgstr "usando Paquetes en el repositorio" - -#: ../../server/reagent.py:90 -#, fuzzy -msgid "unmask given packages in given repository" -msgstr "usando Paquetes en el repositorio" - -#: ../../server/reagent.py:116 -#, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" -msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" +msgid "library linking test (using repository metadata)" msgstr "busca bibliotecas perdidas" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "busca bibliotecas perdidas" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "elimina los paquetes descargados y limpia los directorios temp." - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" -"Empezando la sincronización de datos entre los mirrors (paquetes/base de " -"datos)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "¡ Abortando !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Inserta un mensaje de envío por favor" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "¿ Debo continuar con el procedimiento de ordenación ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Salir/Enviar" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Texto del anuncio" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL relevante (opcional)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Tablón de anuncios del repositorio, inserción de nueva entrada" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Elige la que quieras eliminar" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "¿Seguro que quieres eliminarla?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Comenzando el bloqueo de las bases de datos de los mirrors" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Ocurrió un problema en al menos un mirror" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Restauración completada" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Comenzando el desbloqueo de las bases de datos de los mirrors" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Restauración completada" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Comenzando el bloqueo de las bases de datos de los mirrors de descarga" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Bloqueo de los mirrors de descarga completado" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" -"Comenzando el desbloqueo de las bases de datos de los mirrors de descarga" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Desbloqueo de los mirrors de descarga completado" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "BASE DE DATOS" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "DESCARGA" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "en los repositorios" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Errores de sincronización con la base de datos. No se puede continuar." - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Calculando los paquetes disponibles para" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +# [set] +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Estado de la base de datos del repositorio remoto de Entropy" +msgid "package names" +msgstr "Nombre del paquete" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Host" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Revisión" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Revisión de la base de datos local" +msgid "verify local packages integrity" +msgstr "verifica la integridad de los paquetes" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "elige en qué rama trabajar" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "funciones para el manejo de repositorios de paquetes" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "sincroniza los repositorios de paquetes con los mirrors primarios" - -#: ../../server/activator.py:61 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "repository handling functions" -msgstr "funciones para el manejo de repositorios de paquetes" +msgid "verify remote packages integrity" +msgstr "verifica la integridad de los paquetes" -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Importing keypair for repository" -msgstr "Repositorio inválido" +msgid "execute query" +msgstr "Ejecutar copia" -# [server] -#: ../../server/server_key.py:125 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Another keypair already exists for repository" -msgstr "no está en el repositorio !" +msgid "available queries" +msgstr "disponible" -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "package.mask del usuario" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Debes instalarlos lo antes posible" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Repositorio de destino" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Ordenar por repositorio" - -# [server] -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "no está en el repositorio !" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Repositorio inválido" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Repositorio inválido" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Repositorio inválido" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "Elige el repositorio" - -# [server] -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Introducir URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Información del repositorio" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "Repositorio inválido" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "habilita el repositorio especificado" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "¿ Estás preparado ?" +msgid "tag name" +msgstr "Nombre de Host" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "no está disponible" +msgid "show libraries (.so) required by matched packages" +msgstr "Estos son los paquetes que coinciden" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "muestra qué paquetes dependen de los atoms proporcionados" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "usando Paquetes en el repositorio" +msgid "include build dependencies" +msgstr "No se pudieron encontrar las dependencias necesarias" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Identificadores de paquete" +msgid "search through package sets" +msgstr "busca sets de paquetes disponibles" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_key.py:377 -msgid "Key size" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nombre del Set de Paquetes" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "busca paquetes por su descripción" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Información del repositorio" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Descripción del paquete" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "No se encontró nada" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "bibliotecas" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Fecha de creación" +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "usuario no encontrado" -#: ../../server/server_key.py:379 -msgid "Expires on" +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "No se han encontrado paquetes" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "forzando la actualización de metadatos de los paquetes" + +#: ../../server/eit/commands/status.py:84 +#, fuzzy +msgid "local revision" +msgstr "revisión" + +#: ../../server/eit/commands/status.py:91 +#, fuzzy +msgid "stored packages" +msgstr "Paquete enmascarado" + +#: ../../server/eit/commands/status.py:96 +#, fuzzy +msgid "upload packages" +msgstr "paquetes descargados" + +#: ../../server/eit/commands/status.py:103 +#, fuzzy +msgid "unstaged packages" +msgstr "Paquete enmascarado" + +#: ../../server/eit/commands/status.py:135 +#, fuzzy +msgid "add" +msgstr "Para ser añadido" + +#: ../../server/eit/commands/status.py:147 +#, fuzzy +msgid "switch injected" +msgstr "cambiando" + +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 +#, fuzzy +msgid "show repository status" +msgstr "muestra el estado de los repositorios" + +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "paquetes rotos" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "muestra los paquetes instalados" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "no disponible" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "paquetes" + +#: ../../server/eit/commands/own.py:50 +msgid "path" msgstr "" -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "no se especificó ningún paquete." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Habilitando" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Habilitado" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "ya estaba habilitado" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Deshabilitando" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Deshabilitado" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "ya estaba deshabilitado" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 #, fuzzy -msgid "Invalid syntax." -msgstr "Cadena inválida." +msgid "search packages in given repository" +msgstr "busca paquetes en los repositorios" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/own.py:92 #, fuzzy -msgid "No valid repository specified." -msgstr "No se especificó un repositorio válido." +msgid "search packages owning paths" +msgstr "busca paquetes en los repositorios" -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "No se puede hacer coincidir" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -#, fuzzy -msgid "No packages selected." -msgstr "No hay paquetes seleccionados" - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dependencias del paquete" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Sin dependencias" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Test de dependencias" - -# [server] -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "Sin dependencias" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Test de dependencias" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Confirmar" - -# [server] -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "dependencias manuales añadidas correctamente" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Enmascaramiento de Paquetes" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Desempaquetando" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Buscando los paquetes para eliminar" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "No se han especificado suficientes parámetros" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Estos son los paquetes que serán eliminados de la base de datos" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Eliminando los paquetes seleccionados" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" -"Paquetes eliminados. Para eliminar paquetes binarios, ejecuta el activador." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Buscando paquetes inyectados para eliminar" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Estos son los paquetes inyectados puestos para eliminar" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Cambiando la rama, asegúrate de tener los paquetes sincronizados." - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Recopilando paquetes que serán marcados" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Estos son los paquetes que serán marcados" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "No se especificó un repositorio válido." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Se especificaron repositorios inválidos." - -#: ../../server/server_reagent.py:738 +#: ../../server/eit/commands/init.py:59 #, fuzzy msgid "Entropy repository has been initialized" msgstr "Tu repositorio por defecto no está inicializado" -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Creando una base de datos vacía en" +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "No se puede sobrescribir un archivo ya existente" +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Repositorio actual" -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Sacudiendo la base de datos del repositorio" +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Repositorio de destino" -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dependencias del paquete" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "mueve paquetes de un repositorio a otro" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nombre del Set de Paquetes" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "No se encontró nada" + +# [server] +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "no está en el repositorio !" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "error de socket" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Revisión del repositorio" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "muestra el estado de los repositorios" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "mueve paquetes de un repositorio a otro" + +#: ../../server/eit/commands/help.py:38 +msgid "Entropy Infrastructure Toolkit" +msgstr "" + +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 +#, fuzzy +msgid "this help" +msgstr "este mensaje" + +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "Al repositorio" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Omitiendo repositorio" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Revisión del repositorio" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Actualizar Repositorios" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Elige el repositorio" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Enviar mensaje" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Inserta un mensaje de envío por favor" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Estado de la base de datos del repositorio remoto de Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Host" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Remotamente" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "local" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "¡ Abortando !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +# [comRep] +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Obtener información del paquete" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Mostrar paquetes disponibles" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Añadir entrada en el tablón de anuncios" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Eliminar la entrada del tablón de anuncios" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Tablón de anuncios" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Introducir URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Elige la que quieras eliminar" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "¿Seguro que quieres eliminarla?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Salir/Enviar" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Obtener el tablón de anuncios del repositorio" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "repositorio" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Omitiendo repositorio" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "habilita el repositorio especificado" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Paquetes instalados" + +#: ../../server/eit/commands/commit.py:57 +#, fuzzy +msgid "selectively pick changes" +msgstr "Eliminando los paquetes seleccionados" + +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "No se puede hacer coincidir" + +#: ../../server/eit/commands/commit.py:115 msgid "No valid packages to repackage." msgstr "No hay paquetes válidos para reempaquetar." -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 +#: ../../server/eit/commands/commit.py:121 msgid "Scanning database for differences" msgstr "Buscando diferencias en la base de datos" -#: ../../server/server_reagent.py:921 +#: ../../server/eit/commands/commit.py:145 #, fuzzy -msgid "Invalid atom" -msgstr "Acción inválida." +msgid "Invalid package" +msgstr "Backend inválido" -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" msgstr "Nah' que hacerl" -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Estos son los paquetes cuyo estado será cambiado a inyectado" +#: ../../server/eit/commands/commit.py:163 +#, fuzzy +msgid "These would be marked as injected" +msgstr "ha sido inyectado" -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "¿ Quieres transformarlos ahora ?" +#: ../../server/eit/commands/commit.py:175 +msgid "Do it now ?" +msgstr "" -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" +#: ../../server/eit/commands/commit.py:186 +#, fuzzy +msgid "Transforming" msgstr "Transformando desde la base de datos" -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Transformación de la base de datos completada" +#: ../../server/eit/commands/commit.py:191 +#, fuzzy +msgid "Action completed" +msgstr "inyección completada" # [server] -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 +#: ../../server/eit/commands/commit.py:202 #, fuzzy msgid "expired" msgstr "expirados" -#: ../../server/server_reagent.py:960 +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Elige el Set de Paquetes que quieres eliminar" +msgid "Select packages for removal" +msgstr "Buscando paquetes inyectados para eliminar" -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 +#: ../../server/eit/commands/commit.py:216 #, fuzzy msgid "Remove this package?" msgstr "Eliminar paquetes" -#: ../../server/server_reagent.py:989 +#: ../../server/eit/commands/commit.py:223 #, fuzzy -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Elige el Set de Paquetes que quieres añadir" +msgid "These would be removed from repository" +msgstr "Coincidencias a eliminar desde la base de datos del repositorio" -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 +#: ../../server/eit/commands/commit.py:248 +#, fuzzy +msgid "Select packages to add" +msgstr "Algunos paquetes están enmascarados" + +#: ../../server/eit/commands/commit.py:256 #, fuzzy msgid "Add this package?" msgstr "Enmascarar este paquete" -#: ../../server/server_reagent.py:1000 +#: ../../server/eit/commands/commit.py:264 #, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Los siguientes paquetes serán instalados o actualizados" +msgid "These would be added or updated" +msgstr "Serán añadidos a la base de datos del sistema" -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 +#: ../../server/eit/commands/commit.py:297 #, fuzzy msgid "warning" msgstr "Atención" -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 +#: ../../server/eit/commands/commit.py:304 msgid "Would you like to package them now ?" msgstr "¿ Quieres empaquetarlos ahora ?" -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 +#: ../../server/eit/commands/commit.py:305 msgid "inside" msgstr "dentro de" -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 +#: ../../server/eit/commands/commit.py:318 msgid "Compressing packages" msgstr "Comprimiendo paquetes" -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 +#: ../../server/eit/commands/commit.py:332 msgid "Ignoring broken Spm entry, please recompile it" msgstr "" "Ignorando la entrada del Administrador de Paquetes Fuente rota, recompílalo " "por favor" -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 +#: ../../server/eit/commands/commit.py:339 msgid "Nothing to do, check later." msgstr "Nada que hacer, vuelve a comprobar mas tarde." -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 +#: ../../server/eit/commands/commit.py:354 msgid "Entries handled" msgstr "Entradas manejadas" -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 -#, fuzzy -msgid "local revision" -msgstr "revisión" - -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 -#, fuzzy -msgid "stored packages" -msgstr "Paquete enmascarado" - -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 -#, fuzzy -msgid "upload packages" -msgstr "paquetes descargados" - -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 -#, fuzzy -msgid "unstaged packages" -msgstr "Paquete enmascarado" - -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 -#, fuzzy -msgid "add" -msgstr "Para ser añadido" - -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 -#, fuzzy -msgid "switch injected" -msgstr "cambiando" - -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Estos son los paquetes que serán instalados" - -# [set] -#: ../../server/server_reagent.py:1310 -#, fuzzy -msgid "No package sets found" -msgstr "No se han encontrado set de paquetes" - -# [set] -#: ../../server/server_reagent.py:1318 -#, fuzzy -msgid "package set not found" -msgstr "set de paquetes no encontrado" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "No se encontró nada" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 -#, fuzzy -msgid "show repository status" -msgstr "muestra el estado de los repositorios" - -#: ../../server/eit/commands/help.py:34 -msgid "Entropy Infrastructure Toolkit" -msgstr "" - -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 -#, fuzzy -msgid "this help" -msgstr "este mensaje" - -#: ../../server/eit/commands/commit.py:60 -#, fuzzy -msgid "selectively pick changes" -msgstr "Eliminando los paquetes seleccionados" - -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" - -#: ../../server/eit/commands/commit.py:167 -#, fuzzy -msgid "Invalid package" -msgstr "Backend inválido" - -#: ../../server/eit/commands/commit.py:181 -#, fuzzy -msgid "These would be marked as injected" -msgstr "ha sido inyectado" - -#: ../../server/eit/commands/commit.py:191 -msgid "Do it now ?" -msgstr "" - -#: ../../server/eit/commands/commit.py:202 -#, fuzzy -msgid "Transforming" -msgstr "Transformando desde la base de datos" - -#: ../../server/eit/commands/commit.py:206 -#, fuzzy -msgid "Transform complete" -msgstr "Transformación de la base de datos completada" - -#: ../../server/eit/commands/commit.py:222 -#, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Elige el Set de Paquetes que quieres eliminar" - -#: ../../server/eit/commands/commit.py:236 -#, fuzzy -msgid "These would be removed from repository" -msgstr "Coincidencias a eliminar desde la base de datos del repositorio" - -#: ../../server/eit/commands/commit.py:260 -#, fuzzy -msgid "What packages do you want to add ?" -msgstr "Elige el Set de Paquetes que quieres añadir" - -#: ../../server/eit/commands/commit.py:275 -#, fuzzy -msgid "These would be added or updated" -msgstr "Serán añadidos a la base de datos del sistema" - -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Paquetes instalados" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "no está disponible" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Omitiendo repositorio" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "busca coincidencias con algún paquete en los repositorios" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "habilita el repositorio especificado" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Descargando la base de datos del repositorio" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "muestra el estado actual de bloqueo" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Tabla de estado de los mirrors" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Servidor" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Al repositorio" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "En el repositorio" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "muestra qué paquetes dependen de los atoms proporcionados" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Calculando los paquetes disponibles para" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Calculando los paquetes disponibles para" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Todos los repositorios estaban ya actualizados." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Calculando los paquetes disponibles para" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "archivo no encontrado" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "muestra los archivos que pertenecen a los atoms proporcionados" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "habilita el repositorio especificado" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "No se pudieron encontrar las dependencias necesarias" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "mueve paquetes de un repositorio a otro" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dependencias del paquete" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Sin dependencias" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Test de dependencias" + +# [server] +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "Sin dependencias" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Test de dependencias" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Confirmar" + +# [server] +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "dependencias manuales añadidas correctamente" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Paquetes instalados" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dependencias del paquete" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configurando el paquete" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copia paquetes de un repositorio a otro" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Desempaquetando el paquete de dependencias" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forzar accción" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Prueba a actualizar los repositorios e inténtalo de nuevo" + +# [server] +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "no está en el repositorio !" + +# [server] +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "no está en el repositorio !" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Paquetes instalados" + +# [server] +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "no está en el repositorio !" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Identificadores de paquete" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "la base de datos remota se bloqueó de repente" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Repositorio inválido" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "Elige el repositorio" + +# [server] +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Introducir URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Información del repositorio" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Debes instalarlos lo antes posible" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Repositorio inválido" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "habilita el repositorio especificado" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "¿ Estás preparado ?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "no está disponible" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "usando Paquetes en el repositorio" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Identificadores de paquete" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Fecha de creación" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Repositorio inválido" + +# [server] +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "no está en el repositorio !" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Debes instalarlos lo antes posible" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Repositorio de destino" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Ordenar por repositorio" + +# [server] +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "no está en el repositorio !" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Repositorio inválido" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Repositorio inválido" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "administra un repositorio" + +# [set] +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Nombre del paquete" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "No se pudo configurar el directorio para la caché" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "ramas soportadas" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Backend inválido" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "busca paquetes en los repositorios" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "No se pudo cambiar a la rama" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "rama" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Acción inválida." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "administra un repositorio" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Repositorio actual" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7644,124 +7559,130 @@ msgstr "Hay sets de paquetes incompletos. Continúa bajo tu propio riesgo" msgid "Application" msgstr "Paquete" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Correctamente conectado como" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "ramas soportadas" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Voto registrado correctamente" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Error registrando el voto" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Ya ha sido eliminado" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Aplicaciones" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Aplicaciones sin grupo" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "Paquetes a desactualizar" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Opciones del programa" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Actualizaciones de aplicaciones" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Opciones del programa" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Propuesta" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destino" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Actualizaciones de seguridad" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Paquete" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Cargando, espera por favor..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Los repositorios están actualizándose" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "No hay avisos" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "No hay elementos para mostrar" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nombre de archivo" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "fija el repositorio por defecto" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Activado" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Actualizar" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Revisión" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identificador del repositorio" @@ -8183,6 +8104,10 @@ msgstr "Algunos paquetes están enmascarados" msgid "Masked package" msgstr "Paquete enmascarado" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Habilitado" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Por favor, confirma las siguientes acciones" @@ -10290,12 +10215,497 @@ msgstr "Magneto - Notificador de Actualizaciones de Paquetes" msgid "_Load Package Manager" msgstr "_Ejecutar el Administrador de Paquetes" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "La interfaz del Servidor Entropy debe ejecutarse como root" +#~ msgid "handles community-side features" +#~ msgstr "maneja las características de la parte community" + +#~ msgid "community repositories management functions" +#~ msgstr "funciones de administración de los repositorios community" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "registra el Sistema buscando nuevos paquetes compilados" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analiza el directorio de almacenamiento de Entropy directamente" + +#~ msgid "repackage the specified atoms" +#~ msgstr "reempaqueta los atoms especificados" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "no pregunta nada excepto cosas críticas" + +#~ msgid "manage only the specified atoms" +#~ msgstr "administra sólo los atoms especificados" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "añade paquetes binarios al repositorio sin afectar su alcance " +#~ "(multipaquetes)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "" +#~ "funciones de administración de los mirrors de repositorios community" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "sincroniza los paquetes y la base de datos y ordena un poco" + +#~ msgid "sync all the configured repositories" +#~ msgstr "sincroniza todos los repositorios configurados" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "sincroniza paquetes con los mirrors primarios" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "sincroniza la base de datos del repositorio actual con los mirrors " +#~ "primarios" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "" +#~ "bloquea la base de datos del repositorio actual (en el lado del servidor)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "" +#~ "desbloquea la base de datos del repositorio actual (en el lado del " +#~ "servidor)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "" +#~ "bloquea la base de datos del repositorio actual (en el lado del cliente)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "" +#~ "desbloquea la base de datos del repositorio actual (en el lado del " +#~ "cliente)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "elimina los paquetes binarios que no están en repositorio y han expirado" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(re)inicializa la base de datos del repositorio actual" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "no rellena la base de datos usando los paquetes de los mirrors" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(re)crea la base de datos para el repositorio especificado" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "fuerza un aumento de la revisión para la base de datos del repositorio " +#~ "actual manualmente" + +#~ msgid "synchronize the database" +#~ msgstr "sincroniza la base de datos" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "" +#~ "elimina los atoms proporcionados de la base de datos del repositorio " +#~ "actual" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "elimina los atoms inyectados proporcionados (todos si no se especifica " +#~ "ningún atom)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "crea una base de datos para repositorio en la ruta proporcionada" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "cambia los atoms proporcionados (o world) a la rama especificada" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "verifica la integridad remota de los atoms proporcionados (o world)" + +#~ msgid "backup current repository database" +#~ msgstr "hace una copia de la base de datos actual del repositorio" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "restaura una base de datos del repositorio previamente guardada" + +#~ msgid "enable the specified repository" +#~ msgstr "habilita el repositorio especificado" + +#~ msgid "disable the specified repository" +#~ msgstr "deshabilita el repositorio especificado" + +#~ msgid "show the current Server Interface status" +#~ msgstr "muestra el estado actual del Interfaz del Servidor" #, fuzzy -#~ msgid "reset error" -#~ msgstr "error de socket" +#~ msgid "handle packages dependencies" +#~ msgstr "maneja dependencias manuales de paquetes" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "clona un paquete dentro de un repositorio asignándole una etiqueta " +#~ "arbitraria" + +#~ msgid "pulls dependencies in" +#~ msgstr "añade las dependencias" + +#~ msgid "set the default repository" +#~ msgstr "fija el repositorio por defecto" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Repositorios configurados actualmente" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Ordenar por repositorio" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Repositorio de destino" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "" +#~ "hace algunas búsquedas en las bases de datos de los repositorios community" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "muestra a qué paquete pertenecen los archivos proporcionados" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "muestra qué paquetes dependen de los atoms proporcionados" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "muestra todos los paquetes del repositorio por defecto" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "busca paquetes en la base de datos por defecto del repositorio" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "muestra los paquetes que contienen las etiquetas especificadas" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "muestra los paquetes que contienen las etiquetas especificadas" + +#~ msgid "source package manager functions" +#~ msgstr "funciones del administrador de paquetes fuente" + +#~ msgid "compilation function" +#~ msgstr "función de compilación" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compila los paquetes pertenecientes a las categorías proporcionadas" + +#~ msgid "just list packages" +#~ msgstr "sólo muestra los paquetes" + +#, fuzzy +#~ msgid "do not pull old package slots" +#~ msgstr "paquetes descargados" + +# [spm] +#, fuzzy +#~ msgid "compile packages in provided package set names" +#~ msgstr "" +#~ "compila los paquetes pertenecientes a los nombres de sets proporcionados" + +#~ msgid "rebuild everything" +#~ msgstr "reconstruye todo" + +# [spm] +#, fuzzy +#~ msgid "run database update if all went fine" +#~ msgstr "ejecuta update database si todo fue bien" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "ejecuta la sincronización de mirrors si todo está correcto" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" + +#~ msgid "notice board handling functions" +#~ msgstr "funciones para el manejo del tablón de anuncios" + +#~ msgid "add a news item to the notice board" +#~ msgstr "añade una nueva entrada al tablón de anuncios" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "elimina una entrada del tablón de anuncios" + +#~ msgid "read the current notice board" +#~ msgstr "lee el tablón de anuncios actual" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "busca dependencias insatisfechas en los repositorios community" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "verifica la integridad de archivos de paquetes locales" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Debes instalar sys-apps/entropy-server :-)" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Debes instalar/actualizar sys-apps/entropy-server :-)" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "muestra el estado de los repositorios" + +#~ msgid "do some searches into repository databases" +#~ msgstr "hace algunas búsquedas en las bases de datos del repositorio" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "busca paquetes en la base de datos por defecto del repositorio" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(re)inicializa la base de datos del repositorio actual" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "cambia el repositorio a la rama especificada" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verifica la integridad remota de los atoms proporcionados (o world)" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "clona" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "usando Paquetes en el repositorio" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "usando Paquetes en el repositorio" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "busca paquetes huérfanos en el Administrador de Paquetes Fuente" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "busca bibliotecas perdidas" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "elimina los paquetes descargados y limpia los directorios temp." + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Empezando la sincronización de datos entre los mirrors (paquetes/base de " +#~ "datos)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "¿ Debo continuar con el procedimiento de ordenación ?" + +#~ msgid "Notice text" +#~ msgstr "Texto del anuncio" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL relevante (opcional)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Tablón de anuncios del repositorio, inserción de nueva entrada" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Comenzando el bloqueo de las bases de datos de los mirrors" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Ocurrió un problema en al menos un mirror" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Restauración completada" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Comenzando el desbloqueo de las bases de datos de los mirrors" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Restauración completada" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "" +#~ "Comenzando el bloqueo de las bases de datos de los mirrors de descarga" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Bloqueo de los mirrors de descarga completado" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "Comenzando el desbloqueo de las bases de datos de los mirrors de descarga" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Desbloqueo de los mirrors de descarga completado" + +#~ msgid "DATABASE" +#~ msgstr "BASE DE DATOS" + +#~ msgid "DOWNLOAD" +#~ msgstr "DESCARGA" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "en los repositorios" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "" +#~ "Errores de sincronización con la base de datos. No se puede continuar." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Revisión de la base de datos local" + +#~ msgid "choose on what branch operating" +#~ msgstr "elige en qué rama trabajar" + +#~ msgid "package repositories handling functions" +#~ msgstr "funciones para el manejo de repositorios de paquetes" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "sincroniza los repositorios de paquetes con los mirrors primarios" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "funciones para el manejo de repositorios de paquetes" + +#~ msgid "no package specified." +#~ msgstr "no se especificó ningún paquete." + +#~ msgid "Enabling" +#~ msgstr "Habilitando" + +#~ msgid "already enabled" +#~ msgstr "ya estaba habilitado" + +#~ msgid "Disabling" +#~ msgstr "Deshabilitando" + +#~ msgid "Disabled" +#~ msgstr "Deshabilitado" + +#~ msgid "already disabled" +#~ msgstr "ya estaba deshabilitado" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Cadena inválida." + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "No se especificó un repositorio válido." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "No hay paquetes seleccionados" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Enmascaramiento de Paquetes" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Desempaquetando" + +#~ msgid "Matching packages to remove" +#~ msgstr "Buscando los paquetes para eliminar" + +#~ msgid "Not enough parameters" +#~ msgstr "No se han especificado suficientes parámetros" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Estos son los paquetes que serán eliminados de la base de datos" + +#~ msgid "Removing selected packages" +#~ msgstr "Eliminando los paquetes seleccionados" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Paquetes eliminados. Para eliminar paquetes binarios, ejecuta el " +#~ "activador." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Estos son los paquetes inyectados puestos para eliminar" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "Cambiando la rama, asegúrate de tener los paquetes sincronizados." + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Recopilando paquetes que serán marcados" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Estos son los paquetes que serán marcados" + +#~ msgid "No valid repositories specified." +#~ msgstr "No se especificó un repositorio válido." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Se especificaron repositorios inválidos." + +#~ msgid "Creating empty database to" +#~ msgstr "Creando una base de datos vacía en" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "No se puede sobrescribir un archivo ya existente" + +#~ msgid "Bumping Repository database" +#~ msgstr "Sacudiendo la base de datos del repositorio" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Estos son los paquetes cuyo estado será cambiado a inyectado" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "¿ Quieres transformarlos ahora ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformando desde la base de datos" + +#~ msgid "Database transform complete" +#~ msgstr "Transformación de la base de datos completada" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Elige el Set de Paquetes que quieres eliminar" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Elige el Set de Paquetes que quieres añadir" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Los siguientes paquetes serán instalados o actualizados" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Estos son los paquetes que serán instalados" + +# [set] +#, fuzzy +#~ msgid "No package sets found" +#~ msgstr "No se han encontrado set de paquetes" + +# [set] +#, fuzzy +#~ msgid "package set not found" +#~ msgstr "set de paquetes no encontrado" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Transformación de la base de datos completada" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Elige el Set de Paquetes que quieres eliminar" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Elige el Set de Paquetes que quieres añadir" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "La interfaz del Servidor Entropy debe ejecutarse como root" #, fuzzy #~ msgid "Entropy locked during lock acquire" @@ -10416,9 +10826,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "empty username" #~ msgstr "nombre de usuario en blanco" -#~ msgid "user not found" -#~ msgstr "usuario no encontrado" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "debes loguearte en la web para actualizar el formato de tu contraseña" @@ -10496,10 +10903,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "EAPI3 Service status" #~ msgstr "Estado del servicio EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "la base de datos remota se bloqueó de repente" - #~ msgid "EAPI3 Service" #~ msgstr "Servicio EAPI3" @@ -10910,9 +11313,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "From repository" #~ msgstr "Desde el repositorio" -#~ msgid "To repository" -#~ msgstr "Al repositorio" - #~ msgid "Copy instead of move?" #~ msgstr "¿Copiar en vez de mover?" @@ -10965,18 +11365,9 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Check mode" #~ msgstr "Modo comprobación" -#~ msgid "Get repository notice board" -#~ msgstr "Obtener el tablón de anuncios del repositorio" - -#~ msgid "Remove notice board entry" -#~ msgstr "Eliminar la entrada del tablón de anuncios" - #~ msgid "Entry Identifiers" #~ msgstr "Identificadores de las entradas" -#~ msgid "Add notice board entry" -#~ msgstr "Añadir entrada en el tablón de anuncios" - #~ msgid "Notice link" #~ msgstr "Link del anuncio" @@ -11074,9 +11465,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Previous database copied to file" #~ msgstr "Base de datos previa copiada al archivo" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Todos los repositorios estaban ya actualizados." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "repositorios ya estaban actualizados. Los demás han sido actualizados." @@ -11405,9 +11793,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "No valid repositories" #~ msgstr "No hay repositorios válidos" -#~ msgid "not available" -#~ msgstr "no disponible" - #~ msgid "is empty" #~ msgstr "está vacío" @@ -11495,9 +11880,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Execute" #~ msgstr "Ejecutar" -#~ msgid "Destination repository" -#~ msgstr "Repositorio de destino" - #~ msgid "Copy/move packages" #~ msgstr "Copiar/mover paquetes" @@ -11572,9 +11954,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "No se pudo mover/copiar paquetes desde repositorios diferentes" -#~ msgid "Execute copy" -#~ msgstr "Ejecutar copia" - #~ msgid "Entropy packages move/copy" #~ msgstr "Mover/copiar paquetes de Entropy" @@ -11587,9 +11966,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Insert your new notice board entry" #~ msgstr "Inserta la nueva entrada para el tablón de anuncios" -#~ msgid "Server" -#~ msgstr "Servidor" - #~ msgid "current revision" #~ msgstr "revisión actual" @@ -11608,9 +11984,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Choose the execution mode" #~ msgstr "Elige el modo de ejecución" -#~ msgid "Commit message" -#~ msgstr "Enviar mensaje" - #~ msgid "Pretend mode" #~ msgstr "Modo de prueba" @@ -11686,9 +12059,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Eclass" #~ msgstr "Eclasses" -#~ msgid "Choose the repository" -#~ msgstr "Elige el repositorio" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Elige los repositorios que quieras escanear" @@ -11707,9 +12077,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "You must now either press the" #~ msgstr "Debes presionar" -#~ msgid "Update Repositories" -#~ msgstr "Actualizar Repositorios" - #~ msgid "or the" #~ msgstr "o" @@ -11786,9 +12153,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgstr "" #~ "Se necesita una instancia válida basada en la Interfaz Cliente de UGC" -#~ msgid "Cannot setup cache directory" -#~ msgstr "No se pudo configurar el directorio para la caché" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Se necesita una instancia válida de interfaz Client" @@ -11934,10 +12298,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "Downloading packages system mask" #~ msgstr "Descargando la máscara de paquetes del sistema" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Descargando la base de datos del repositorio" - #, fuzzy #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Descargando el archivo de paquete etiquetados conflictivamente" @@ -11985,9 +12345,6 @@ msgstr "_Ejecutar el Administrador de Paquetes" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "el contador para el atom está duplicado, ignorando" -#~ msgid "file not found" -#~ msgstr "archivo no encontrado" - #~ msgid "invalid checksum" #~ msgstr "comprobación de suma inválida" diff --git a/misc/po/fr.po b/misc/po/fr.po index 6f9ec0fc0..c660115da 100644 --- a/misc/po/fr.po +++ b/misc/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: French Entropy translation for Sabayon Linux 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2009-12-04 15:32+0100\n" "Last-Translator: SUFFYS \n" "Language-Team: French \n" @@ -14,37 +14,37 @@ msgstr "" "X-Poedit-Country: FRANCE\n" "X-Poedit-SourceCharset: iso-8859-1\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchro de la base de données courante" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "veuillez patienter" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Suppression de l'élément" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Ajout de l'élément" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Export de la table de la base de données" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 #, fuzzy msgid "Database Export complete." msgstr "Export de la base de données terminé." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -53,22 +53,22 @@ msgstr "Export de la base de données terminé." msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 #, fuzzy msgid "Spm error occured" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "utilisateur introuvable" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Génération de métadonnées, veuillez patienter." @@ -248,16 +248,16 @@ msgstr "Collecte des compteurs Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "erreur" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "introuvable" @@ -309,7 +309,7 @@ msgstr "Impossible d'exécuter Spm pkg_config() pour" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -374,7 +374,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -408,7 +408,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "n'existe pas" @@ -449,7 +449,7 @@ msgid "Error calculating dependencies" msgstr "Erreur lors du calcul des dépendances" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "non supporté" @@ -514,470 +514,470 @@ msgstr "connexion au miroir" msgid "setting directory to" msgstr "le répertoire est changé pour" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "L'interface des miroirs du serveur Entropy est chargée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Miroir des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "Recherche d'un fichier dans le miroir" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "déverrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "verrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "miroir" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "miroir déjà verrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "miroir déjà déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "miroir pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "miroir déjà verrouillé pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "miroir déjà déverrouillé pour téléchargement" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "miroir verrouillé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "miroir non verrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "miroir déverrouillé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "erreur de déverrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "miroir non déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "connexion pour téléchargement de paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "téléchargement de paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "n'est pas listé dans le dépôt !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "vérification de contrôle de somme du paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "téléchargé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "Le contrôle de somme ne correspond pas. Retéléchargement..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "semble endommagé. Songer à réempaquetter. Abandon !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "Le miroir n'a pas de fichier de révision de base de données valide" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "incapable de télécharger la révision du dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "le miroir n'a pas de fichier de révision valide" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "attente de 2 minutes avant abandon" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Statistiques locales" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "Répertoire d'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "fichiers prêts" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "Répertoire des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "télécharger" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Paquets à être supprimés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Paquets à être déplacés localement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Paquets à être envoyés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Taille totale de la suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Taille totale de l'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Taille totale du téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Statistiques distantes pour " -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "Paquets distants" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "fichiers stockés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Calcul des files" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "suppression du paquet et de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "synchroniser" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "Suppression terminée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "copie du fichier et de la clé de hachage vers le dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "erreurs d'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "raison" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "envoi complété avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "erreurs de téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "téléchargement terminé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 #, fuzzy msgid "QA checking package file" msgstr "Vérification des mises à jour..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "Fichier de paquet fautif, veuillez corriger" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "démarrage de la synchro des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "synchronisation des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "erreur de socket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 #, fuzzy msgid "on" msgstr "ou le" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "rien à faire sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 #, fuzzy msgid "Expanding queues" msgstr "Calcul en cours" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "rien à synchroniser pour" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Non" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "Invocation d'un « keyboard interrupt » !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "il vous faut les réempaquetter" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "exception trappée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "au moins un miroir correctement synchronisé !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "collecte des paquets expirés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "collecte des paquets expirés dans les branches sélectionnées" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "rien à supprimer dans cette branche" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "voici les paquets expirés" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Voulez-vous continuer ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "suppression des paquets à distance" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "supprimer les erreurs" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "suppression des paquets localement" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "téléchargement du tableau d'affichage des miroirs vers" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "tableau d'affichage téléchargé avec succès à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "envoi du tableau d'affichage à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "échec de l'envoi du tableau d'affichage sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "envoi du tableau d'affichage complété" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "envoi du tableau d'affichage à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "échec de l'envoi du tableau d'affichage sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "envoi du tableau d'affichage complété" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -991,8 +991,8 @@ msgid "download path" msgstr "emplacement du téléchargement" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "erreurs" @@ -1000,287 +1000,299 @@ msgstr "erreurs" msgid "failed to download from mirror" msgstr "échec du téléchargement à partir du miroir" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Incapable de dépaquetter" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 #, fuzzy msgid "Troubles with treeupdates" msgstr "Problèmes avec les treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 #, fuzzy msgid "Bumping old data back" msgstr "Saut de la base de données du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Aucun configuré" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "Somme de contrôle de la base de données du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 #, fuzzy msgid "dump light checksum" msgstr "Somme de contrôle" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 #, fuzzy msgid "opener" msgstr "correspondances" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "compression de la base dee données et du contrôle de somme" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "Saut de la base de données du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "Somme de contrôle de la base de données du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "contrôle de somme compressé" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "préparation de la base de données non compressée pour l'envoi" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "désactivation de l'EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "préparation à l'envoi de la base de données au miroir" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "l'envoi a échoué, pas de déverrouillage et poursuite" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "déjà désactivé" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Nom du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problèmes de téléchargement" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "lecteur de tableau d'affichage du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() a reporté des erreurs" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Voici les paquets qui seraient supprimés" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problèmes d'envoi" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "synchro de la base de données complétée avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 #, fuzzy msgid "mirrors have not been unlocked. Sync them." msgstr "miroir non déverrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJECTER" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "a été injecté" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Base de données du dépôt mise à jour quand même" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "Dépôt non configuré" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de dépôt protégé, ne peut être utilisé, désolé l'ami..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Révision du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "valeur par défaut définie à 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "ne correspond pas" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Initialisation de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "Étiquette invalide spécifiée" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 #, fuzzy msgid "flushing back selected packages from branches" msgstr "Suppression des paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "rien à faire" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "voici les paquets qui seront purgés" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "vérification de la clé de hachage du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "la clé de hachage ne correspond pas pour " -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "mauvais clé md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "erreur au téléchargement des paquets du mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "travail sur la branche" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "paquet purgé" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossible de toucher la base de données système" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Préparation au déplacement des paquets sélectionnés vers " -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Préparation à la copie des paquets sélectionnés vers" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1288,454 +1300,453 @@ msgstr "" "tous les vieux paquets à portée conflictuelle seront supprimés du dépôt de " "destination à moins d'être injectés" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nouvelle étiquette" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Dépendances inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "dépendance" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "bascule" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 #, fuzzy msgid "cannot switch, package not found, skipping" msgstr "impossible de basculer, paquet introuvable, saut" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "déplacement du fichier" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "chargement des données de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "injection des données dans la base de données cible" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "Suppression de l'élément de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Injection de métadonnées Entropy dans les paquets compilés" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "injection de métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "injection terminée" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "Suppression du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Vérification d'intégrité sur les paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Ceci est la liste des paquets qui seraient vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Travail sur le miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "Vérification de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "vérification de hachage sur" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 #, fuzzy msgid "NOT healthy" msgstr "PAS sain" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Ceci est la liste des paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistiques" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Nombre de paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Nombre de paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Nombre de paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "vérification de l'état de " -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "est corrompu, conservation de la somme de contrôle" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "Paquets téléchargés" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "Téléchargements échoués" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "utilisation des paquets dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "n'est pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "Paquet masqué" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "envoyé/ignoré" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Début du téléchargement des fichiers manquants" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Recherche de fichiers manquants/endommagés sur un autre miroir" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Paquets binaires téléchargés avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Voici les paquets qui ne peuvent être trouvés en ligne" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Ils ne seront pas vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Veuillez configurer votre branche sur" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "et réessayez" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copie de la base de données (si inexistante)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Basculer les paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Rejet" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "déjà dans la branche" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "boucle de migration complétée" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 #, fuzzy msgid "Running orphaned SPM packages test" msgstr "Vérification des dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Vérification du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "n'est plus trouvable" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Chaîne de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Vérification" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Exécution d'un test de dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requis par" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "par dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Chaque dépendance est satisfaite. Tout est OK." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 #, fuzzy msgid "Broken and matched packages list" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 #, fuzzy msgid "Dumping results into these files" msgstr "déjà activé" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Le système est stable" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Vérifie les librairies avec Spm, merci de patienter" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Voici les paquets correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Votre dépôt par défaut n'est pas initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Poursuite avec un dépôt non initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Base de données Entropy déjà verrouillée par vous :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Verrouillage et synchro de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Table d'état des mirroirs" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Déverrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Verrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "Impossible de verrouiller le mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Les données du dictionnaire du dépôt sont corrompues" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Saut du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Initialisation d'une base de données vide" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Gestionnaire de dépôts Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "initialisé avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "paquet ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rév" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "dépendances manuelles pour" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Aucune dépendance manquante trouvée." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Êtes-vous sûr(e) ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1743,149 +1754,150 @@ msgstr "Êtes-vous sûr(e) ?" msgid "Yes" msgstr "Oui" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "collecte des métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Verrouillage des bases de données complété" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Exception trappée, fermeture des tâches" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "dépôt côté serveur" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "dépôt de la communauté" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Instance de l'interface du serveur Entropy dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "Branche courante" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Dépôts présentement configurés" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 #, fuzzy msgid "GPG key expired" msgstr "expiré" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "veuillez corriger" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "fichiers de configuration" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "vérification du système" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "certains fichiers de configuration ne sont pas encore à jour" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "À être ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "rendre les règles de dépendance plus strictes" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "Suppression du paquet" @@ -1968,8 +1980,7 @@ msgstr "Mise à jour de la base de données sytème en utilisant le dépôt" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Dépôt" @@ -2383,7 +2394,7 @@ msgstr "Matching" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "paquets" @@ -2442,16 +2453,8 @@ msgstr "Configuration" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -2830,7 +2833,7 @@ msgstr "Les dépôts ont été mis à jour avec succès" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Tout est OK" @@ -3130,89 +3133,89 @@ msgstr "la vérification de hachage a échoué, veuillez réessayer plus tard" msgid "installing" msgstr "installation" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Exécution du test de dépendance" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "dépendance" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "dépendance" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 #, fuzzy msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "générer la base de donnée des paquets installés en utilisant les fichiers du " "système [dernier espoir]" -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "raison non disponible" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 #, fuzzy msgid "user package.mask" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "mots-clé système" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 #, fuzzy msgid "user package.unmask" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 #, fuzzy msgid "user repo package.keywords" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 #, fuzzy msgid "user package.keywords" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "complètement masqué (par mot-clé ?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 #, fuzzy msgid "repository general packages.db.mask" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 #, fuzzy msgid "repository general packages.db.keywords" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 #, fuzzy msgid "user license.mask" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 #, fuzzy msgid "user live unmask" msgstr "Trouvé %s paquets" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 #, fuzzy msgid "user live mask" msgstr "Trouvé %s paquets" @@ -3222,90 +3225,90 @@ msgstr "Trouvé %s paquets" msgid "Entropy needs your attention" msgstr "Entropy nécessite votre attention" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy a une question pour vous" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interrompu" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Numéro sélectionné" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Veuillez choisir une option" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Ignorer tout" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Confirmer" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Ajouter un item" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Ajouter un item" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Supprimer un item" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Afficher la liste courante" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Votre choix (tappez un nombre et appuyez sur Enter) :" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Vous n'avez pas tappé un nombre." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Action invalide." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Chaîne à ajouter :" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Chaîne invalide" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Numéro d'élément à supprimer" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Élément invalide." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Numéro d'élément à supprimer" @@ -3482,16 +3485,18 @@ msgstr "Indentificateur de GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titre" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3620,7 +3625,6 @@ msgstr "Vous n'êtes pas" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Paramètres erronés" @@ -3670,7 +3674,7 @@ msgid "Error while creating package for" msgstr "Erreur au cours de la création du paquet pour" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Impossible de continuer" @@ -3796,7 +3800,7 @@ msgstr "dépôt n'est pas disponible" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Mot-clé" @@ -3808,7 +3812,7 @@ msgstr "Mot-clé" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Trouvé" @@ -3819,7 +3823,6 @@ msgstr "Trouvé" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "entrées" @@ -3852,8 +3855,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -4001,8 +4004,9 @@ msgstr "Recherche sur Removal" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Aucun paquet trouvé" @@ -4064,7 +4068,7 @@ msgstr "Recherche de Slot" msgid "Package Set Search" msgstr "Paquet" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Recherche d'étiquette" @@ -4143,7 +4147,7 @@ msgstr "Téléchargement" msgid "Checksum" msgstr "Somme de contrôle" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dépendances" @@ -4263,7 +4267,7 @@ msgid "repository already enabled" msgstr "Déjà activé" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "dépôt n'est pas disponible" @@ -4341,7 +4345,7 @@ msgstr "actif" msgid "never synced" msgstr "jamais synchronisé" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "État" @@ -4391,24 +4395,25 @@ msgstr "Pas de dépôts spécifiés dans" msgid "Unhandled exception" msgstr "Exception non gérée" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Tableau d'affichage non disponible" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Contenu" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Lien" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Appuyez sur Entrée pour continuer" @@ -4418,7 +4423,8 @@ msgstr "Appuyez sur Entrée pour continuer" msgid "Exit" msgstr "Quitter" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 #, fuzzy msgid "Choose one by typing its identifier" msgstr "" @@ -4432,7 +4438,7 @@ msgid "Notice board" msgstr "télécharger les paquets uniquement" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Vous n'êtes pas root" @@ -4454,8 +4460,7 @@ msgid "Type a number." msgstr "Tappez un nombre." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Fichier de configuration" @@ -4576,7 +4581,7 @@ msgid "Unique files that would be automerged" msgstr "Fichiers uniques qui seraient autofusionnés" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "dépôt invalide" @@ -4594,7 +4599,7 @@ msgstr "Déjà connecté en tant que" msgid "Please logout first" msgstr "Veuillez d'abord vous déconnecter" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4602,7 +4607,7 @@ msgstr "Veuillez d'abord vous déconnecter" msgid "Username" msgstr "Nom d'utilisateur" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4610,7 +4615,7 @@ msgstr "Nom d'utilisateur" msgid "Password" msgstr "Mot de passe" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4622,7 +4627,7 @@ msgstr "Veuilles vous connecter contre " msgid "Login aborted. Not logged in." msgstr "Erreur d'authentification. Pas connecté" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4844,7 +4849,7 @@ msgid "Installed packages database not available" msgstr "La base de données des paquets installés n'est pas disponible" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4860,15 +4865,15 @@ msgstr "Nettoyage de la base de données système terminé" msgid "No System Databases found" msgstr "Pas de base de données système trouvée" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Pas de copie de sécurité des bases de données trouvée" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Choisir la base de données que vous voulez restaurer" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 #, fuzzy msgid "Entropy installed packages database restore tool" msgstr "depuis la base de données des paquets installés" @@ -5167,28 +5172,23 @@ msgstr "D'accord, j'abandonne. Vous êtes sans espoir" msgid "Go to hell." msgstr "Allez chez le diable" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Options de base" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "cette sortie" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "imprimer la version" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "désactiver la sortie coloriée" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "désactiver la sortie coloriée" @@ -5198,8 +5198,7 @@ msgstr "désactiver la sortie coloriée" msgid "print a bash completion script to stdout" msgstr "afficher les fichiers corrompus sur stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Options de l'application" @@ -5256,7 +5255,7 @@ msgstr "lecteur de tableau d'affichage du dépôt" msgid "show respositories status" msgstr "afficher l'état des dépôts" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "recherche les paquets dans les dépôts" @@ -5297,8 +5296,7 @@ msgstr "" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "demander avant de faire tout changement" @@ -5306,8 +5304,7 @@ msgstr "demander avant de faire tout changement" msgid "just download packages" msgstr "seulement télécharger les paquets" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "afficher seulement ce qui serait fait" @@ -5499,7 +5496,7 @@ msgstr "supprimer un ou plusieurs paquets" msgid "configure one or more installed packages" msgstr "configurer un ou plusieurs paquets installés" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "regarder pour des dépendances non satisfaites" @@ -5515,7 +5512,7 @@ msgstr "trier les paquets par taille sur disque" msgid "look for missing libraries" msgstr "regarder pour les librairies manquantes" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5543,7 +5540,7 @@ msgstr "faire diverses query sur les bases de données locale et dépôt" msgid "search from what package a file belongs" msgstr "rechercher à quel paquet appartient un fichier" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "afficher le changelog des paquets" @@ -5551,13 +5548,11 @@ msgstr "afficher le changelog des paquets" msgid "search what packages depend on the provided atoms" msgstr "rechercher quels paquets dépendent des atomes donnés" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "rechercher des paquets par description" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "montrer les fichiers appartenant aux atomes donnés" @@ -5600,8 +5595,7 @@ msgstr "Voici les paquets installés" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "montrer les librairies runtime requises par les atomes donnés" @@ -5618,8 +5612,7 @@ msgstr "montrer l'arborescence de suppression des atomes donnés" msgid "show atoms needing the provided libraries" msgstr "montrer les atomes nécessitant les librairies données" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "recherche les ensembles de paquets disponibles" @@ -5631,27 +5624,24 @@ msgstr "montrer les paquets associés au slot donné" msgid "show packages owning the provided tags" msgstr "montrer les paquets associés aux tags donnés" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "montrer quels paquets dépendent des atomes donnés" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "afficher plus de détails" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "afficher les résultats pour qu'ils soient utilisables par script" @@ -5739,7 +5729,7 @@ msgstr "" "générer la base de donnée des paquets installés en utilisant les fichiers du " "système [dernier espoir]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 #, fuzzy msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5764,364 +5754,22 @@ msgstr "" "paquets installés" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "gère les fonctionnalités du côté de la communauté" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "fonctions de gestion des dépôts de la communauté" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "recherche des paquets nouvellement compilés dans le système " - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analyser le répertoire du magasin Entropy directement" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -#, fuzzy -msgid "repackage the specified atoms" -msgstr "montrer les paquets possédant le tag spécifié" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "ne rien demander sauf les trucs critiques" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -#, fuzzy -msgid "manage only the specified atoms" -msgstr "montrer les paquets possédant le tag spécifié" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"ajouter des laqpets binaires au dépôt sans affecter la portée (multipaquets)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "fonctions de gestion des miroirs des dépôts de la communauté" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" -"synchronisation des paquets, de la base de données, et quelques rangements" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "synchroniser tous les dépôts configurés" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "synchroniser les paquets entre les miroirs primaires" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "vérifier également l'intégrité des paquets" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"synchroniser la base de données du dépôt courant parmi les miroirs principaux" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "verrouiller la base de données du dépôt courant (côté serveur)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "déverrouiller la base de données du dépôt courant (côté serveur)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "verrouiller la base de données du dépôt courant (côté client)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "déverrouiller la base de données du dépôt courant (côté client)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "afficher l'état de verrouillage actuel" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "supprimer les paquets binaires absents des dépôts et expirés" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Calcul des paquets disponibles pou" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "gérer un dépôt" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(ré)initialiser la base de données du dépôt courant" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" -"ne pas réalimenter la base de données en utilisant les paquets du miroir" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(re)créer la base de données pour le dépôt spécifié" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "forcer manuellement un saut de révision pour le dépôt courant" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "synchroniser la base de données" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "supprimer les atomes donnés de la base de données du dépôt" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "supprimer les atomes injectés donnés (tous si aucun atome spécifié)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "créer une base de données de dépôt vide à l'emplacement spécifié" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "passer les atomes donnés dans la branch spécifiée (ou world)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "faire une copie de sécurité de la base de données du dépôt courant" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" -"restaurer une ancienne copie de sécurité de la base de données du dépôt" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "activer le dépôt spécifié" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "désactiver le dépôt spécifié" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "afficher l'état de l'interface du serveur courant" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Paquets installés" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "gérer les dépendances manuelles des paquets" - -#: ../../client/equo.py:318 -#, fuzzy -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "rechercher les paquets dans la base de donnée du dépôt par défaut" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "déplacer des paquets d'un dépôt à l'autre" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -#, fuzzy -msgid "pulls dependencies in" -msgstr "Dépendances" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copier les paquets d'un dépôt à l'autre" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "définir le dépôt par défaut" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "mettre à jour les dépôts configurés" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Dépôts présentement configurés" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "n'est pas listé dans le dépôt !" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Trier par dépôt" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Dépôt de destination" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" -"faites res recherches dans les bases de données du dépôt de la communauté" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "afficher à quel paquet les fichiers spécifiés appartiennent" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "montrer quels paquets dépendent des atomes donnés" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "lister tous les paquets du dépôt par défaut" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "recherche des paquets dans la base de données du dépôt par défaut" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "afficher les paquets ayant les étiquettes spécifiées" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "afficher les paquets ayant les étiquettes spécifiées" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "fonctions du gestionnaire de sources du paquet" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "fonction de compilation" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compiler les paquets appartenant aux catégories fournies" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "seulement lister les paquets" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -#, fuzzy -msgid "do not pull old package slots" -msgstr "Paquets téléchargés" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -#, fuzzy -msgid "compile packages in provided package set names" -msgstr "compiler les paquets appartenant aux catégories données" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "tout reconstruire" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "" -"exécuter une mise à jour de la base de données si tout s'est bien passé" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "exécuter une synchro du miroir si tout s'est bien passé" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "vérifier les paquets orphelins dans SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -#, fuzzy -msgid "notice board handling functions" -msgstr "fonctions de gestion de la base de données" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "ajouter un élément de nouvelle au tableau d'affichage" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "supprimer un élément de nouvelles du tableau d'affichage" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "lire le tableau d'affichage courant" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" -"voir pour des dépendances non satisfaites parmi les dépôts de la communauté" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "vérifier l'intégrité des fichiers des paquets locaux" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "se connecter à un dépôt spécifié" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "se déconnecter d'un dépôt spécifié" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forcer l'action" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -6129,82 +5777,73 @@ msgstr "" "Gérer les documents du paquet pour le dépôt sélectionné (commentaires, " "fichiers, vidéos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "obtenir les documents disponibles pour la clé de paquet spécifié (exemple : " "x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "ajouter un nouveau document à la clé de paquet spécifiée (exemple ; x11-libs/" "qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" "Supprimer les documents de la base de données en utilisant leurs identifiants" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "Gérer les votes des paquets pour le dépôt sélectionné" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "obtenir un vote pour la clé de paquet spécifié (exemple : x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "ajouter un vote pour la clé de paquet spécifié (exemple : x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "gère le cache Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "nettoyer le cache d'Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "" "supprimer les paquets téléchargés et nettoyer les répertoires temporaires" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "afficher l'information système" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Vous devez installer 'sys-apps/entropy-server'. Faites-le !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Vous devez installer/mettre à jour 'sys-apps/entropy-server'. Faites-le !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "pas assez de paramètres" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 #, fuzzy msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "La base de données des paquets installés est introuvable ou endommagée. " "Veuillez la générer avec les outils 'equo database'" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -6212,26 +5851,26 @@ msgstr "" "Bonjour, je suis le rapporteur de bogues. J'ai le regret de vous informer " "qu'Equo a crashé. Ce sont des choses qui arrivent..." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Mais il y a quelque chose que vous pourriez faire pour nous aider à faire " "d'Equo une meilleure application" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- MÊME SI JE NE VEUX PAS QUE VOUS SOUMETTIEZ LE MÊME RAPPORT PLUSIEURS FOIS " "--" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Je suis maintenant en train de vous montrer ce qui s'est passé. Ne vous " "inquiétez pas, je suis là pour vous aider." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -6239,11 +5878,11 @@ msgstr "" "Je ne peux pas même pas écrire dans /tmp. Alors, veuillez copier l'erreur et " "l'envoyer à lxnay@sabayon.org" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Bien sûr que vous êtes sur Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 #, fuzzy msgid "" "Erm... Can I send the error, along with some information\n" @@ -6254,11 +5893,11 @@ msgstr "" "à propos de votre matériel à mes créateurs pour qu'ils me corrigent ? (votre " "adresse IP sera enregistrée)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "D'accord, d'accord... désolé !" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -6266,19 +5905,19 @@ msgstr "" "Si vous désirez être contacté (et activement supporté), répondez également " "aux questions ci-bas :" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Votre nom complet :" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Votre courriel :" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Ce que vous faisiez :" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6286,7 +5925,7 @@ msgstr "" "Merci beaucoup. Cette erreur a été rapportée et le problème sera réglé, " "espérons-le, dès que possible." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6295,11 +5934,11 @@ msgstr "" "Impossible d'envoyer le rapport. J'ai sauvegardé l'erreur dans /tmp/" "equoerror.txt. Quand vous le voudrez, envoyez-le à lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6308,7 +5947,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Rien à faire" @@ -6461,10 +6099,7 @@ msgstr "est endommagé" msgid "atom" msgstr "atome" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "dans" @@ -6490,6 +6125,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Voici les paquets qui seraient supprimés" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Voici les paquets qui seraient supprimés" @@ -6723,7 +6359,7 @@ msgstr "Installation terminée" msgid "These are the packages that would be masked" msgstr "Voici les paquets qui seraient marqués" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "Voulez-vous continuer ?" @@ -6761,8 +6397,7 @@ msgstr "Suppression refusée" msgid "Would you like to calculate dependencies ?" msgstr "Voulez-vous calculer les dépendances ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Voulez-vous les supprimer maintenant ?" @@ -6814,7 +6449,10 @@ msgstr "10 secondes" msgid "Libraries/Executables statistics" msgstr "Statistiques des Librairies/Fichiers exécutables" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Non trouvé" @@ -6822,765 +6460,1038 @@ msgstr "Non trouvé" msgid "Would you like to install them ?" msgstr "Voulez-vous les installer ?" -#: ../../server/reagent.py:42 -#, fuzzy -msgid "show current repositories status" -msgstr "afficher l'état des dépôts" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "faites des recherches dans les bases de données du dépôt" - -#: ../../server/reagent.py:55 -#, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "recherche des paquets dans la base de données du dépôt par défaut" - -#: ../../server/reagent.py:72 -#, fuzzy -msgid "(re)initialize the current repository" -msgstr "(ré)initialiser la base de données du dépôt courant" - -#: ../../server/reagent.py:77 -#, fuzzy -msgid "do not include reverse dependencies" -msgstr "Impossible de trouver les dépendances requises" - -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "Basculer dans la branche spécifiée du dépôt" - -#: ../../server/reagent.py:81 -#, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -#: ../../server/reagent.py:89 -#, fuzzy -msgid "mask given package in given repository" -msgstr "utilisation des paquets dans le dépôt" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" -#: ../../server/reagent.py:90 +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "unmask given packages in given repository" -msgstr "utilisation des paquets dans le dépôt" +msgid "available tests" +msgstr "disponible" -#: ../../server/reagent.py:116 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "vérifier les paquets orphelins dans SPM" +msgid "dependencies test" +msgstr "Test de dépendances" -#: ../../server/reagent.py:117 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "scan new packages available in SPM" -msgstr "vérifier les paquets orphelins dans SPM" +msgid "libraries test" +msgstr "Essai de librairies" -#: ../../server/reagent.py:120 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "look for missing libraries (scan system)" +msgid "dump results to file" +msgstr "déjà activé" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" msgstr "regarder pour les librairies manquantes" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "regarder pour les librairies manquantes" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "" -"supprimer les paquets téléchargés et nettoyer les répertoires temporaires)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" -"Début de la synchro des données entre les miroirs (paquets/base de données)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Abandon !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Veuillez insérer un message de confirmation" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Voulez-vous continuer avec la procédure de rangement ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Quitter/Confirmer" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Texte de notice" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL pertinent (optionnel)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Tableau d'affichage du dépôt, insertion d'un nouvel élément" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Veuillez sélectionner l'élément à supprimer" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer ceci ?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Début du verrouillage des miroirs de téléchargement" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Un problème s'est produit avec au moins un miroir" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Restauration complétée" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Début du déverrouillage des miroirs de téléchargement" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Restauration complétée" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" -"Début du verrouillage des bases de données des miroirs de téléchargement" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Verrouillage des miroirs de téléchargement complété" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" -"Début du déverrouillage des bases de données des miroirs de téléchargement" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Déverrouillage des miroirs de téléchargements complété" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "BASE DE DONNÉES" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "TÉLÉCHARGER" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "dans les dépôts" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Erreur de synchro de la base de données, impossible de continuer." - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Calcul des paquets disponibles pou" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "État du dépôt distant de la base de données Entropy" +msgid "package names" +msgstr "Nom du Paquet" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Hôte" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Révision" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Révision locale de la base de données à" +msgid "verify local packages integrity" +msgstr "vérifier également l'intégrité des paquets" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "choisir sur quelle branche opérer" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "package repositories handling functions" -msgstr "fonctions de manipulation des dépôts du paquet" +msgid "verify remote packages integrity" +msgstr "vérifier également l'intégrité des paquets" -#: ../../server/activator.py:55 -#, fuzzy -msgid "sync package repositories across primary mirrors" -msgstr "synchronisation des dépôts de paquets à partir des miroirs principaux" - -#: ../../server/activator.py:61 -#, fuzzy -msgid "repository handling functions" -msgstr "fonctions de manipulation des dépôts du paquet" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Importing keypair for repository" -msgstr "dépôt invalide" +msgid "execute query" +msgstr "Exécuter la copie" -#: ../../server/server_key.py:125 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Another keypair already exists for repository" -msgstr "n'est pas listé dans le dépôt !" +msgid "available queries" +msgstr "disponible" -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "Trouvé %s paquets" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Vous devriez les installer dès que possible" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Dépôt de destination" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Trier par dépôt" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "n'est pas listé dans le dépôt !" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "Choisir le dépot" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Insérer un URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Informations du dépôt" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "activer le dépôt spécifié" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "Êtes-vous prêt(e) ?" +msgid "tag name" +msgstr "Nom d'hôte" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "n'est pas disponible" +msgid "show libraries (.so) required by matched packages" +msgstr "Voici les paquets correspondants" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "montrer quels paquets dépendent des atomes donnés" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "utilisation des paquets dans le dépôt" +msgid "include build dependencies" +msgstr "Impossible de trouver les dépendances requises" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Identifiants du paquet" +msgid "search through package sets" +msgstr "recherche les ensembles de paquets disponibles" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_key.py:377 -msgid "Key size" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nom du Paquet" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "rechercher des paquets par description" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informations du dépôt" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Description du paquet" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Rien trouvé" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "librairies" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Date de création" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "aucun paquet spécifié." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Activation" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Activé" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "Déjà activé" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Désactivation" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Désactivé" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "déjà désactivé" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 +#: ../../server/eit/commands/query.py:313 #, fuzzy -msgid "Invalid syntax." -msgstr "Chaîne invalide" +msgid "sets found" +msgstr "utilisateur introuvable" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/query.py:347 #, fuzzy -msgid "No valid repository specified." -msgstr "Pas de dépôts valides spécifiés." +msgid "packages found" +msgstr "Aucun paquet trouvé" -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Ne peut pas correspondre" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 +#: ../../server/eit/commands/query.py:356 #, fuzzy -msgid "No packages selected." -msgstr "Aucun paquet sélectionné" +msgid "miscellaneous package metadata queries" +msgstr "Forcer la mise à jour des métadonnées des paquets" -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dépendances de paquets" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Pas de dépendances" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Test de dépendances" - -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "dépendances manuelles pour" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Test de dépendances" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Confirmer" - -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "Dépendances manuelles ajoutées avec succès" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Masquage du paquet" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Dépaquettage" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Paquets correspondants à supprimer" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Pas assez de paramètres" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Voici les paquets qui seraient supprimés de la base de données" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Suppression des paquets sélectionnés" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" -"Paquets supprimés. Pour supprimer les paquets binaires, exécuter l'activateur" - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Recherche de paquets injectés à supprimer" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Voici les paquets présentés pour suppression" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Changement de branche, assurez-vous que vous paquets sont en synchro" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Collecte des paquets qui seraient marqués" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Voici les paquets qui seraient marqués" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Pas de dépôts valides spécifiés." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Dépôts spécifiés invalides." - -#: ../../server/server_reagent.py:738 -#, fuzzy -msgid "Entropy repository has been initialized" -msgstr "Votre dépôt par défaut n'est pas initialisé" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Création de la base de données vide dans" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Impossible d'écraser le fichier déjà existant" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Saut de la base de données du dépôt" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Pas de paquets valides à réempaquetter" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Vérification de la base de données pour des différences" - -#: ../../server/server_reagent.py:921 -#, fuzzy -msgid "Invalid atom" -msgstr "Action invalide." - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "? Zarro thinggz totoo ?" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Voici les paquets qui seront modifiés avec le statut injecté" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Voulez-vous les transformer maintenant ?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformation depuis la base de données" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Transformation de la base de données complétée" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "expiré" - -#: ../../server/server_reagent.py:960 -#, fuzzy -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Pas de dépôt trouvé en ligne" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Supprimer ce paquet ?" - -#: ../../server/server_reagent.py:989 -#, fuzzy -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Pas de dépôt trouvé en ligne" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Ajouter ce paquet ?" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Voici les paquets qui seraient installés/mis à jour" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -#, fuzzy -msgid "warning" -msgstr "Avertissement" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Voulez-vous les empaquetter maintenant ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "à l'intérieur" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Compression des paquets" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Rien à faire, vérifiez plus tard." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Entrées gérées" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 #, fuzzy msgid "local revision" msgstr "révision" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 #, fuzzy msgid "stored packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "Paquets téléchargés" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "À être ajouté" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "bascule" -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Voici les paquets qui seraient installés" - -#: ../../server/server_reagent.py:1310 -#, fuzzy -msgid "No package sets found" -msgstr "Pas de paquets trouvés" - -#: ../../server/server_reagent.py:1318 -#, fuzzy -msgid "package set not found" -msgstr "Pas de paquets trouvés" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Rien trouvé" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "afficher l'état des dépôts" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "paquets endommagés" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "énumérer les paquets installés" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "pas disponible" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "paquets" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/init.py:59 +#, fuzzy +msgid "Entropy repository has been initialized" +msgstr "Votre dépôt par défaut n'est pas initialisé" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Dépôt actuel" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Dépôt de destination" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nom du Paquet" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Rien trouvé" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "erreur de socket" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Révision du dépôt" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "afficher l'état des dépôts" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "cette sortie" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "Vers le dépôt" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Révision du dépôt" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Mettre à jour les dépôts" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Choisir le dépôt" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Confirmer le message" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Veuillez insérer un message de confirmation" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "État du dépôt distant de la base de données Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Hôte" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "À distance" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "local" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Abandon !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Obtenir l'information sur le paquet" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "pas disponible, c'est ok" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Ajouter un élément au tableau d'affichage" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Supprimer un élément du tableau d'affichage" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "télécharger les paquets uniquement" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Insérer un URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URL" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Veuillez sélectionner l'élément à supprimer" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Êtes-vous sûr(e) de vouloir supprimer ceci ?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Quitter/Confirmer" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Obtenir le tableau d'affichage du dépôt" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "dépôt" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Paquets installés" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Suppression des paquets sélectionnés" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Ne peut pas correspondre" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Pas de paquets valides à réempaquetter" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Vérification de la base de données pour des différences" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Installation du paquet" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "? Zarro thinggz totoo ?" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "a été injecté" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformation depuis la base de données" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Transformation de la base de données complétée" +msgid "Action completed" +msgstr "injection terminée" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "expiré" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Pas de dépôt trouvé en ligne" +msgid "Select packages for removal" +msgstr "Recherche de paquets injectés à supprimer" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Supprimer ce paquet ?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Correspondances à supprimer de la base de données du dépôt" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Pas de dépôt trouvé en ligne" +msgid "Select packages to add" +msgstr "Certains paquets sont masqués" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Ajouter ce paquet ?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Ils seraient ajoutés à la base de données système" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +#, fuzzy +msgid "warning" +msgstr "Avertissement" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Voulez-vous les empaquetter maintenant ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "à l'intérieur" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Compression des paquets" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Rien à faire, vérifiez plus tard." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Entrées gérées" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Paquets installés" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "n'est pas disponible" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "comparer un paquet dans les dépôts" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Saut de la base de données du dépôt" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "afficher l'état de verrouillage actuel" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Table d'état des mirroirs" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Serveur" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Vers le dépôt" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "dans le dépôt" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "montrer quels paquets dépendent des atomes donnés" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Tous les dépôts étaient déjà à jour." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "fichier introuvable" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "montrer les fichiers appartenant aux atomes donnés" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "Impossible de trouver les dépendances requises" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Pas de dépendances" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Test de dépendances" + +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "dépendances manuelles pour" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Test de dépendances" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Confirmer" + +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "Dépendances manuelles ajoutées avec succès" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Paquets installés" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configuration du paquet" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copier les paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Dépaquetage du paquet de dépendance" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forcer l'action" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "mettre à jour les dépôts configurés" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Paquets installés" + +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Identifiants du paquet" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "Base de données distante a subitement été verrouillée" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "Choisir le dépot" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Insérer un URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Informations du dépôt" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Vous devriez les installer dès que possible" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Êtes-vous prêt(e) ?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "n'est pas disponible" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "utilisation des paquets dans le dépôt" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Identifiants du paquet" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Date de création" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Vous devriez les installer dès que possible" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Dépôt de destination" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Trier par dépôt" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "gérer un dépôt" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Nom du Paquet" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Impossible de configurer le répertoire de cache" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "non supporté" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Installation du paquet" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Impossible de changer de branche" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branche" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Action invalide." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "gérer un dépôt" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Dépôt actuel" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7640,125 +7551,131 @@ msgstr "Voici les paquets qui seraient marqués" msgid "Application" msgstr "Application" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Connecté en tant que" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "non supporté" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Vote enregistré avec succès" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Erreur à l'enregistrement du vote" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Déjà supprimé" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Applications" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Applications sans groupe" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "Paquets à rétrograder" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Options de l'application" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Mises à jour d'applications" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Options de l'application" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proposé" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destination" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Sécurité" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Application" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 #, fuzzy msgid "Please wait, loading..." msgstr "Veuillez patienter" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Les dépôts sont en cours de mise à jour" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Pas d'alertes" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Il n'y a pas d'élément à afficher" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nom de fichier" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "définir le dépôt par défaut" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Actif" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Mettre à jour" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Révision" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identifiant du dépôt" @@ -8174,6 +8091,10 @@ msgstr "Certains paquets sont masqués" msgid "Masked package" msgstr "Paquet masqué" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Activé" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Veuillez confirmer les actions ci-haut" @@ -10306,12 +10227,493 @@ msgstr "Icône de notifications " msgid "_Load Package Manager" msgstr "_Charger le gestionnaire de paquets" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" +#~ msgid "handles community-side features" +#~ msgstr "gère les fonctionnalités du côté de la communauté" + +#~ msgid "community repositories management functions" +#~ msgstr "fonctions de gestion des dépôts de la communauté" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "recherche des paquets nouvellement compilés dans le système " + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analyser le répertoire du magasin Entropy directement" #, fuzzy -#~ msgid "reset error" -#~ msgstr "erreur de socket" +#~ msgid "repackage the specified atoms" +#~ msgstr "montrer les paquets possédant le tag spécifié" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "ne rien demander sauf les trucs critiques" + +#, fuzzy +#~ msgid "manage only the specified atoms" +#~ msgstr "montrer les paquets possédant le tag spécifié" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "ajouter des laqpets binaires au dépôt sans affecter la portée " +#~ "(multipaquets)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "fonctions de gestion des miroirs des dépôts de la communauté" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "" +#~ "synchronisation des paquets, de la base de données, et quelques rangements" + +#~ msgid "sync all the configured repositories" +#~ msgstr "synchroniser tous les dépôts configurés" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "synchroniser les paquets entre les miroirs primaires" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "synchroniser la base de données du dépôt courant parmi les miroirs " +#~ "principaux" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "verrouiller la base de données du dépôt courant (côté serveur)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "déverrouiller la base de données du dépôt courant (côté serveur)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "verrouiller la base de données du dépôt courant (côté client)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "déverrouiller la base de données du dépôt courant (côté client)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "supprimer les paquets binaires absents des dépôts et expirés" + +#, fuzzy +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Calcul des paquets disponibles pou" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(ré)initialiser la base de données du dépôt courant" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "" +#~ "ne pas réalimenter la base de données en utilisant les paquets du miroir" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(re)créer la base de données pour le dépôt spécifié" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "forcer manuellement un saut de révision pour le dépôt courant" + +#~ msgid "synchronize the database" +#~ msgstr "synchroniser la base de données" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "supprimer les atomes donnés de la base de données du dépôt" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "supprimer les atomes injectés donnés (tous si aucun atome spécifié)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "créer une base de données de dépôt vide à l'emplacement spécifié" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "passer les atomes donnés dans la branch spécifiée (ou world)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" + +#~ msgid "backup current repository database" +#~ msgstr "faire une copie de sécurité de la base de données du dépôt courant" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "" +#~ "restaurer une ancienne copie de sécurité de la base de données du dépôt" + +#~ msgid "enable the specified repository" +#~ msgstr "activer le dépôt spécifié" + +#~ msgid "disable the specified repository" +#~ msgstr "désactiver le dépôt spécifié" + +#~ msgid "show the current Server Interface status" +#~ msgstr "afficher l'état de l'interface du serveur courant" + +#, fuzzy +#~ msgid "handle packages dependencies" +#~ msgstr "gérer les dépendances manuelles des paquets" + +#, fuzzy +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "rechercher les paquets dans la base de donnée du dépôt par défaut" + +#, fuzzy +#~ msgid "pulls dependencies in" +#~ msgstr "Dépendances" + +#~ msgid "set the default repository" +#~ msgstr "définir le dépôt par défaut" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Dépôts présentement configurés" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Trier par dépôt" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Dépôt de destination" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "" +#~ "faites res recherches dans les bases de données du dépôt de la communauté" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "afficher à quel paquet les fichiers spécifiés appartiennent" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "montrer quels paquets dépendent des atomes donnés" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "lister tous les paquets du dépôt par défaut" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "recherche des paquets dans la base de données du dépôt par défaut" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "afficher les paquets ayant les étiquettes spécifiées" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "afficher les paquets ayant les étiquettes spécifiées" + +#~ msgid "source package manager functions" +#~ msgstr "fonctions du gestionnaire de sources du paquet" + +#~ msgid "compilation function" +#~ msgstr "fonction de compilation" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compiler les paquets appartenant aux catégories fournies" + +#~ msgid "just list packages" +#~ msgstr "seulement lister les paquets" + +#, fuzzy +#~ msgid "do not pull old package slots" +#~ msgstr "Paquets téléchargés" + +#, fuzzy +#~ msgid "compile packages in provided package set names" +#~ msgstr "compiler les paquets appartenant aux catégories données" + +#~ msgid "rebuild everything" +#~ msgstr "tout reconstruire" + +#~ msgid "run database update if all went fine" +#~ msgstr "" +#~ "exécuter une mise à jour de la base de données si tout s'est bien passé" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "exécuter une synchro du miroir si tout s'est bien passé" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#, fuzzy +#~ msgid "notice board handling functions" +#~ msgstr "fonctions de gestion de la base de données" + +#~ msgid "add a news item to the notice board" +#~ msgstr "ajouter un élément de nouvelle au tableau d'affichage" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "supprimer un élément de nouvelles du tableau d'affichage" + +#~ msgid "read the current notice board" +#~ msgstr "lire le tableau d'affichage courant" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "voir pour des dépendances non satisfaites parmi les dépôts de la " +#~ "communauté" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "vérifier l'intégrité des fichiers des paquets locaux" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Vous devez installer 'sys-apps/entropy-server'. Faites-le !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Vous devez installer/mettre à jour 'sys-apps/entropy-server'. Faites-le !" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "afficher l'état des dépôts" + +#~ msgid "do some searches into repository databases" +#~ msgstr "faites des recherches dans les bases de données du dépôt" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "recherche des paquets dans la base de données du dépôt par défaut" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(ré)initialiser la base de données du dépôt courant" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "Basculer dans la branche spécifiée du dépôt" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "utilisation des paquets dans le dépôt" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "utilisation des paquets dans le dépôt" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "regarder pour les librairies manquantes" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "" +#~ "supprimer les paquets téléchargés et nettoyer les répertoires temporaires)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Début de la synchro des données entre les miroirs (paquets/base de " +#~ "données)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Voulez-vous continuer avec la procédure de rangement ?" + +#~ msgid "Notice text" +#~ msgstr "Texte de notice" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL pertinent (optionnel)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Tableau d'affichage du dépôt, insertion d'un nouvel élément" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Début du verrouillage des miroirs de téléchargement" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Un problème s'est produit avec au moins un miroir" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Restauration complétée" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Début du déverrouillage des miroirs de téléchargement" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Restauration complétée" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "" +#~ "Début du verrouillage des bases de données des miroirs de téléchargement" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Verrouillage des miroirs de téléchargement complété" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "Début du déverrouillage des bases de données des miroirs de téléchargement" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Déverrouillage des miroirs de téléchargements complété" + +#~ msgid "DATABASE" +#~ msgstr "BASE DE DONNÉES" + +#~ msgid "DOWNLOAD" +#~ msgstr "TÉLÉCHARGER" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "dans les dépôts" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Erreur de synchro de la base de données, impossible de continuer." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Révision locale de la base de données à" + +#~ msgid "choose on what branch operating" +#~ msgstr "choisir sur quelle branche opérer" + +#, fuzzy +#~ msgid "package repositories handling functions" +#~ msgstr "fonctions de manipulation des dépôts du paquet" + +#, fuzzy +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "" +#~ "synchronisation des dépôts de paquets à partir des miroirs principaux" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "fonctions de manipulation des dépôts du paquet" + +#~ msgid "no package specified." +#~ msgstr "aucun paquet spécifié." + +#~ msgid "Enabling" +#~ msgstr "Activation" + +#~ msgid "already enabled" +#~ msgstr "Déjà activé" + +#~ msgid "Disabling" +#~ msgstr "Désactivation" + +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +#~ msgid "already disabled" +#~ msgstr "déjà désactivé" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Chaîne invalide" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Pas de dépôts valides spécifiés." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Aucun paquet sélectionné" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Masquage du paquet" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Dépaquettage" + +#~ msgid "Matching packages to remove" +#~ msgstr "Paquets correspondants à supprimer" + +#~ msgid "Not enough parameters" +#~ msgstr "Pas assez de paramètres" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Voici les paquets qui seraient supprimés de la base de données" + +#~ msgid "Removing selected packages" +#~ msgstr "Suppression des paquets sélectionnés" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Paquets supprimés. Pour supprimer les paquets binaires, exécuter " +#~ "l'activateur" + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Voici les paquets présentés pour suppression" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "Changement de branche, assurez-vous que vous paquets sont en synchro" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Collecte des paquets qui seraient marqués" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Voici les paquets qui seraient marqués" + +#~ msgid "No valid repositories specified." +#~ msgstr "Pas de dépôts valides spécifiés." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Dépôts spécifiés invalides." + +#~ msgid "Creating empty database to" +#~ msgstr "Création de la base de données vide dans" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Impossible d'écraser le fichier déjà existant" + +#~ msgid "Bumping Repository database" +#~ msgstr "Saut de la base de données du dépôt" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Voici les paquets qui seront modifiés avec le statut injecté" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Voulez-vous les transformer maintenant ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformation depuis la base de données" + +#~ msgid "Database transform complete" +#~ msgstr "Transformation de la base de données complétée" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Pas de dépôt trouvé en ligne" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Pas de dépôt trouvé en ligne" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Voici les paquets qui seraient installés/mis à jour" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Voici les paquets qui seraient installés" + +#, fuzzy +#~ msgid "No package sets found" +#~ msgstr "Pas de paquets trouvés" + +#, fuzzy +#~ msgid "package set not found" +#~ msgstr "Pas de paquets trouvés" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Transformation de la base de données complétée" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Pas de dépôt trouvé en ligne" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Pas de dépôt trouvé en ligne" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" #~ msgid "Entropy locked during lock acquire" #~ msgstr "Entropy verrouillé durant l'acquisition du verrou" @@ -10473,9 +10875,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "empty username" #~ msgstr "nom d'utilisateur vide" -#~ msgid "user not found" -#~ msgstr "utilisateur introuvable" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "vous devez vous authentifier au site Web pour mettre à jour votre format " @@ -10557,10 +10956,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "EAPI3 Service status" #~ msgstr "État du service EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "Base de données distante a subitement été verrouillée" - #~ msgid "EAPI3 Service" #~ msgstr "Service EAPI3" @@ -10878,9 +11273,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "From repository" #~ msgstr "Du dépôt" -#~ msgid "To repository" -#~ msgstr "Vers le dépôt" - #~ msgid "Copy instead of move?" #~ msgstr "Copier au lieu de déplacer ?" @@ -10919,19 +11311,10 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Check mode" #~ msgstr "Vérifier le mode" -#~ msgid "Get repository notice board" -#~ msgstr "Obtenir le tableau d'affichage du dépôt" - -#~ msgid "Remove notice board entry" -#~ msgstr "Supprimer un élément du tableau d'affichage" - #, fuzzy #~ msgid "Entry Identifiers" #~ msgstr "Indentificateur de GLSA" -#~ msgid "Add notice board entry" -#~ msgstr "Ajouter un élément au tableau d'affichage" - #, fuzzy #~ msgid "Notice link" #~ msgstr "ou le" @@ -11020,9 +11403,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Previous database copied to file" #~ msgstr "Base de données antérieure copiée vers le fichier" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Tous les dépôts étaient déjà à jour." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "Les dépôts étaient déjà à jour. D'autres ont été mis à jour." @@ -11331,9 +11711,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "No valid repositories" #~ msgstr "Pas de dépôts valides" -#~ msgid "not available" -#~ msgstr "pas disponible" - #~ msgid "is empty" #~ msgstr "est vide" @@ -11419,9 +11796,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Execute" #~ msgstr "Exécuter" -#~ msgid "Destination repository" -#~ msgstr "Dépôt de destination" - #~ msgid "Copy/move packages" #~ msgstr "Copier/déplacer paquets" @@ -11487,9 +11861,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "rechercher les paquets dans les dépôts" -#~ msgid "Execute copy" -#~ msgstr "Exécuter la copie" - #~ msgid "Entropy packages move/copy" #~ msgstr "Déplacement/copie de paquets Entropy" @@ -11502,9 +11873,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Insert your new notice board entry" #~ msgstr "Insérer votre nouvel élément de tableau d'affichage" -#~ msgid "Server" -#~ msgstr "Serveur" - #~ msgid "current revision" #~ msgstr "Révision courante" @@ -11523,9 +11891,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Choose the execution mode" #~ msgstr "Choisir le mode d'exécution" -#~ msgid "Commit message" -#~ msgstr "Confirmer le message" - #, fuzzy #~ msgid "Pretend mode" #~ msgstr "Créé" @@ -11604,9 +11969,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Eclass" #~ msgstr "Eclasses" -#~ msgid "Choose the repository" -#~ msgstr "Choisir le dépôt" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Choisir les dépôts que voulez vérifier" @@ -11626,9 +11988,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "You must now either press the" #~ msgstr "Vous devez maintenant appuyer sur" -#~ msgid "Update Repositories" -#~ msgstr "Mettre à jour les dépôts" - #~ msgid "or the" #~ msgstr "ou la" @@ -11705,9 +12064,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Une instance basée sur UGC Client est nécessaire" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Impossible de configurer le répertoire de cache" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Une instance d'interface Client valide est requise." @@ -11849,10 +12205,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "Downloading packages system mask" #~ msgstr "Téléchargement du masque système des paquets" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Saut de la base de données du dépôt" - #, fuzzy #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Collecte des paquets Entropy" @@ -11887,9 +12239,6 @@ msgstr "_Charger le gestionnaire de paquets" #~ msgid "cannot open Spm id file for" #~ msgstr "Pas de paquets trouvés" -#~ msgid "file not found" -#~ msgstr "fichier introuvable" - #~ msgid "invalid checksum" #~ msgstr "somme de contrôle invalide" diff --git a/misc/po/fr_CA.po b/misc/po/fr_CA.po index a9da6c025..231f9d12a 100644 --- a/misc/po/fr_CA.po +++ b/misc/po/fr_CA.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: French Entropy translation for Sabayon Linux 0.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2009-09-17 20:16-0500\n" "Last-Translator: Benjamin\n" "Language-Team: Benjamin Guay\n" @@ -13,37 +13,37 @@ msgstr "" "X-Poedit-Language: French\n" "X-Poedit-Country: Canada\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchro de la base de données courante" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "veuillez patienter" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Suppression de l'élément" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Ajout de l'élément" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Export de la table de la base de données" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 #, fuzzy msgid "Database Export complete." msgstr "Export de la base de données terminé." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -52,22 +52,22 @@ msgstr "Export de la base de données terminé." msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 #, fuzzy msgid "Spm error occured" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Emplacement du compteur SPM introuvable dans" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Génération de métadonnées, veuillez patienter." -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Génération de métadonnées, veuillez patienter." @@ -247,16 +247,16 @@ msgstr "Collecte des compteurs Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "erreur" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "introuvable" @@ -307,7 +307,7 @@ msgstr "Impossible de configurer la phase de configuration SPM pour" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -372,7 +372,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Impossible de mettre à jour le fichiers des paquets SPM installés" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -406,7 +406,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "n'existe pas" @@ -446,7 +446,7 @@ msgid "Error calculating dependencies" msgstr "Erreur lors du calcul des dépendances" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "non supporté" @@ -511,467 +511,467 @@ msgstr "connexion au miroir" msgid "setting directory to" msgstr "le répertoire est changé pour" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "L'interface des miroirs du serveur Entropy est chargée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Miroir des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "Recherche d'un fichier dans le miroir" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "déverrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "verrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "miroir" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "miroir déjà verrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "miroir déjà déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "miroir pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "miroir déjà verrouillé pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "miroir déjà déverrouillé pour téléchargement" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "pour téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "miroir verrouillé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "miroir non verrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "miroir déverrouillé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "erreur de déverrouillage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "miroir non déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "connexion pour téléchargement de paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "téléchargement du paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "n'est pas listé dans le dépôt !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "vérification de la somme de contrôle du paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "téléchargé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "La somme de contrôle ne correspond pas. Retéléchargement..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "semble endommagé. Songer à réempaquetter. Abandon !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "Le miroir n'a pas de fichier de révision de base de données valide" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "incapable de télécharger la révision du dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "le miroir n'a pas de fichier de révision valide" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "attente de 2 minutes avant abandon" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "miroir déverrouillé" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Statistiques locales" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "Répertoire d'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "fichiers prêts" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "Répertoire des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "télécharger" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Paquets à être supprimés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Paquets à être déplacés localement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Paquets à être envoyés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Taille totale de la suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Taille totale de l'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Taille totale du téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Statistiques distantes pour " -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "Paquets distants" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "fichiers stockés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Calcul des files" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "suppression du paquet et de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "synchroniser" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "Suppression terminée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "copie du fichier et de la clé de hachage vers le dépôt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "erreurs d'envoi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "raison" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "envoi complété avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "erreurs de téléchargement" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "téléchargement terminé avec succès" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "Vérification d'AQ du fichier du paquet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "Fichier de paquet fautif, veuillez corriger" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "démarrage de la synchro des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "synchronisation des paquets" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "erreur de socket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "rien à faire sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Expansion des files" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "rien à synchroniser pour" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Voulez-vous exécuter les étapes ci-dessus ?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Non" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "Invocation d'un « keyboard interrupt » !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "il vous faut les réempaquetter" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "exception trappée" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "au moins un miroir correctement synchronisé !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "ordonné" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "collecte des paquets expirés" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "collecte des paquets expirés dans les branches sélectionnées" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "rien à supprimer dans cette branche" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "voici les paquets expirés" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Voulez-vous continuer ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "suppression des paquets à distance" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "supprimer les erreurs" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "suppression des paquets localement" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "suppression" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "téléchargement du tableau d'affichage des miroirs vers" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "tableau d'affichage téléchargé avec succès à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "envoi du tableau d'affichage à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "échec de l'envoi du tableau d'affichage sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "envoi du tableau d'affichage complété" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "envoi du tableau d'affichage à partir de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "échec de l'envoi du tableau d'affichage sur" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "envoi du tableau d'affichage complété" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -985,8 +985,8 @@ msgid "download path" msgstr "emplacement du téléchargement" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "erreurs" @@ -994,289 +994,301 @@ msgstr "erreurs" msgid "failed to download from mirror" msgstr "échec du téléchargement à partir du miroir" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Incapable de dépaquetter" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Problèmes avec les treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Restauration des vieilles données" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Aucun configuré" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "" "création du 'dump' de la base de données compressée et de sa somme de " "contrôle" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "'dump light'" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "déversement d'une somme de contrôle légère" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "origine" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "compression de la base dee données et de la somme de contrôle" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "données du dépôt composées" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "Somme de contrôle de la base de données du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "Somme de contrôle compressée" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "préparation de la base de données non compressée pour l'envoi" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "EAPI désactivé" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "préparation à l'envoi de la base de données au miroir" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "l'envoi a échoué, pas de déverrouillage et poursuite" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "déjà désactivé" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Nom du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problèmes de téléchargement" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "lecteur de tableau d'affichage du dépôt" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() a rapporté des erreurs" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Voici les paquets qui seraient supprimés" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problèmes d'envoi" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "synchro de la base de données complétée avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 #, fuzzy msgid "mirrors have not been unlocked. Sync them." msgstr "" "Les miroirs ont maintenant été déverrouillés. Souvenez-vous de les " "synchroniser." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 #, fuzzy msgid "cannot store updates RSS cache" msgstr "impossible " -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJECTER" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "a été injecté" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" "exécuter 'quickpkg' manuellement pour mettre à jour la base de données " "embarquée" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Base de données du dépôt mise à jour quand même" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "Dépôt non configuré" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de dépôt protégé, ne peut être utilisé, désolé l'ami..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Révision du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "valeur par défaut définie à 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "ensemble de paquets configurés" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "ne correspond pas" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Initialisation de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "Étiquette invalide spécifiée" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "nettoyage des paquets sélectionnées des branches" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "rien à faire" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "voici les paquets qui seront purgés" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "vérification de la clé de hachage du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "la clé de hachage ne correspond pas pour " -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "mauvais clé md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "erreur au téléchargement des paquets du mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "travail sur la branche" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "paquet purgé" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossible de toucher la base de données système" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Préparation au déplacement des paquets sélectionnés vers " -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Préparation à la copie des paquets sélectionnés vers" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1284,449 +1296,448 @@ msgstr "" "tous les vieux paquets à portée conflictuelle seront supprimés du dépôt de " "destination à moins d'être injectés" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nouvelle étiquette" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Dépendances inverses" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "dépendance" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "bascule" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "impossible de basculer, paquet introuvable, saut" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "déplacement du fichier" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "chargement des données de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "injection des données dans la base de données cible" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "Suppression de l'élément de la base de données source" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "manipulation de l'atome effectuée avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Injection de métadonnées Entropy dans les paquets compilés" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "injection de métadonnées Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "injection terminée" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "Suppression du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Vérification d'intégrité sur les paquets sélectionnés" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Ceci est la liste des paquets qui seraient vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Travail sur le miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "Vérification de la clé de hachage" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "vérification de hachage sur" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "PAS en santé" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Ceci est la liste des paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Miroir" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistiques" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Nombre de paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Nombre de paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Nombre de paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "vérification de l'état de " -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "est corrompu, conservation de la somme de contrôle" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "paquets vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "paquets sains" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "paquets endommagés" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "Paquets téléchargés" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "Téléchargements échoués" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "utilisation des paquets dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Tous les paquets du dépôt seront vérifiés." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "n'est pas disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Fusion du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "Paquet masqué" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponible" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "envoyé/ignoré" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Début du téléchargement des fichiers manquants" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Recherche de fichiers manquants/endommagés sur un autre miroir" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Paquets binaires téléchargés avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Voici les paquets qui ne peuvent être trouvés en ligne" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Ils ne seront pas vérifiés" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Veuillez configurer votre branche sur" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "et réessayez" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copie de la base de données (si inexistante)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Basculer les paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Saut" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "déjà dans la branche" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "boucle de migration complétée" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Exécution du test des paquets SPM orphelins" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Vérification du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "n'est plus trouvable" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Chaîne de paquets" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Vérification" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Exécution d'un test de dépendances" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requis par" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "par dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Chaque dépendance est satisfaite. Tout est OK." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Liste de paquets endommagés et correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Déversement des résultats dans ces fichiers" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Le système est stable" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Vérifie les librairies avec Spm, merci de patienter" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Voici les paquets correspondants" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Aucun paquet correspondant" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Votre dépôt par défaut n'est pas initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Voulez-vous initialiser votre dépôt par défaut ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Poursuite avec un dépôt non initialisé" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Base de données Entropy déjà verrouillée par vous :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Verrouillage et synchro de la base de données Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Table d'état des mirroirs" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Déverrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Verrouillé" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "Impossible de verrouiller le mirroir" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Les données du dictionnaire du dépôt sont corrompues" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Saut du dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Initialisation d'une base de données vide" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Gestionnaire de dépôts Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "initialisé avec succès" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "paquet ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rév" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "dépendances manuelles pour" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Voici les dépendances introuvables" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Aucune dépendance manquante trouvée." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Êtes-vous sûr(e) ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1734,149 +1745,150 @@ msgstr "Êtes-vous sûr(e) ?" msgid "Yes" msgstr "Oui" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Résolution des métadonnées" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Verrouillage des bases de données complété" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Exception trappée, fermeture des tâches" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "dépôt côté serveur" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "dépôt de la communauté" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Instance de l'interface du serveur Entropy dans le dépôt" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "Branche courante" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Dépôts présentement configurés" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 #, fuzzy msgid "GPG key expired" msgstr "expiré" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "veuillez corriger" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "fichiers de configuration" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "vérification du système" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "certains fichiers de configuration ne sont pas encore à jour" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "À être ajouté" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "rendre les règles de dépendance plus strictes" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "mise à jour du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "ajout du paquet" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "Suppression du paquet" @@ -1959,8 +1971,7 @@ msgstr "Mise à jour de la base de données sytème en utilisant le dépôt" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Dépôt" @@ -2361,7 +2372,7 @@ msgstr "Lecture multiple" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "paquets" @@ -2419,16 +2430,8 @@ msgstr "Configuration" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -2801,7 +2804,7 @@ msgstr "Les dépôts ont été mis à jour avec succès" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Tout est OK" @@ -3096,78 +3099,78 @@ msgstr "la vérification de hachage a échoué, veuillez réessayer plus tard" msgid "installing" msgstr "installation" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Exécution du test de dépendance" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "dépendance" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "dépendance" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "Dépôt du client corrompu. Veuillez restaurer une copie de sécurité." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "raison non disponible" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "user package.mask" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "mots-clé système" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "user package.unmask" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "user repo package.keyworkds (tous les paquets)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "user repo package.keywords" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "user package.keywords" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "complètement masqué (par mot-clé ?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "repository general packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "repository general packages.db.keywords" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "repository general packages.db.keywords" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "user live unmask" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "user live mask" @@ -3176,90 +3179,90 @@ msgstr "user live mask" msgid "Entropy needs your attention" msgstr "Entropy nécessite votre attention" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy a une question pour vous" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interrompu" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Numéro sélectionné" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Veuillez choisir une option" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Ignorer tout" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Confirmer" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Ajouter un item" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Ajouter un item" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Supprimer un item" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Afficher la liste courante" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Votre choix (tappez un nombre et appuyez sur Enter) :" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Vous n'avez pas tappé un nombre." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Action invalide." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Chaîne à ajouter :" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Chaîne invalide" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Numéro d'élément à supprimer" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Élément invalide." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Numéro d'élément à supprimer" @@ -3433,16 +3436,18 @@ msgstr "Indentificateur de GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titre" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3571,7 +3576,6 @@ msgstr "Vous n'êtes pas" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Paramètres erronés" @@ -3621,7 +3625,7 @@ msgid "Error while creating package for" msgstr "Erreur au cours de la création du paquet pour" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Impossible de continuer" @@ -3747,7 +3751,7 @@ msgstr "dépôt n'est pas disponible" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Mot-clé" @@ -3759,7 +3763,7 @@ msgstr "Mot-clé" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Trouvé" @@ -3770,7 +3774,6 @@ msgstr "Trouvé" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "entrées" @@ -3803,8 +3806,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3952,8 +3955,9 @@ msgstr "Recherche sur Removal" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Aucun paquet trouvé" @@ -4014,7 +4018,7 @@ msgstr "Recherche de Slot" msgid "Package Set Search" msgstr "Recherche d'un groupe de paquets" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Recherche d'étiquette" @@ -4093,7 +4097,7 @@ msgstr "Téléchargement" msgid "Checksum" msgstr "Somme de contrôle" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dépendances" @@ -4213,7 +4217,7 @@ msgid "repository already enabled" msgstr "Déjà activé" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "dépôt n'est pas disponible" @@ -4291,7 +4295,7 @@ msgstr "actif" msgid "never synced" msgstr "jamais synchronisé" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "État" @@ -4341,24 +4345,25 @@ msgstr "Pas de dépôts spécifiés dans" msgid "Unhandled exception" msgstr "Exception non gérée" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Tableau d'affichage non disponible" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Contenu" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Lien" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Appuyez sur Entrée pour continuer" @@ -4368,7 +4373,8 @@ msgstr "Appuyez sur Entrée pour continuer" msgid "Exit" msgstr "Quitter" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Choisissez-en un en entrant son identifiant" @@ -4378,7 +4384,7 @@ msgid "Notice board" msgstr "Tableau d'affichage" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Vous n'êtes pas root" @@ -4400,8 +4406,7 @@ msgid "Type a number." msgstr "Tappez un nombre." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Fichier de configuration" @@ -4522,7 +4527,7 @@ msgid "Unique files that would be automerged" msgstr "Fichiers uniques qui seraient autofusionnés" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "dépôt invalide" @@ -4540,7 +4545,7 @@ msgstr "Déjà connecté en tant que" msgid "Please logout first" msgstr "Veuillez d'abord vous déconnecter" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4548,7 +4553,7 @@ msgstr "Veuillez d'abord vous déconnecter" msgid "Username" msgstr "Nom d'utilisateur" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4556,7 +4561,7 @@ msgstr "Nom d'utilisateur" msgid "Password" msgstr "Mot de passe" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4568,7 +4573,7 @@ msgstr "Veuilles vous connecter contre " msgid "Login aborted. Not logged in." msgstr "Erreur d'authentification. Pas connecté" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4791,7 +4796,7 @@ msgid "Installed packages database not available" msgstr "La base de données des paquets installés n'est pas disponible" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4807,15 +4812,15 @@ msgstr "Nettoyage de la base de données système terminé" msgid "No System Databases found" msgstr "Pas de base de données système trouvée" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Pas de copie de sécurité des bases de données trouvée" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Choisir la base de données que vous voulez restaurer" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" "Outil de restauration de la base de données des paquets installés d'Entropy" @@ -5113,28 +5118,23 @@ msgstr "D'accord, j'abandonne. Vous êtes sans espoir" msgid "Go to hell." msgstr "Allez chez le diable" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Options de base" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "cette sortie" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "imprimer la version" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "désactiver la sortie coloriée" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "désactiver la sortie coloriée" @@ -5144,8 +5144,7 @@ msgstr "désactiver la sortie coloriée" msgid "print a bash completion script to stdout" msgstr "afficher les fichiers corrompus sur stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Options de l'application" @@ -5202,7 +5201,7 @@ msgstr "lecteur de tableau d'affichage du dépôt" msgid "show respositories status" msgstr "afficher l'état des dépôts" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "recherche les paquets dans les dépôts" @@ -5243,8 +5242,7 @@ msgstr "" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "demander avant de faire tout changement" @@ -5252,8 +5250,7 @@ msgstr "demander avant de faire tout changement" msgid "just download packages" msgstr "seulement télécharger les paquets" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "afficher seulement ce qui serait fait" @@ -5442,7 +5439,7 @@ msgstr "supprimer un ou plusieurs paquets" msgid "configure one or more installed packages" msgstr "configurer un ou plusieurs paquets installés" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "regarder pour des dépendances non satisfaites" @@ -5458,7 +5455,7 @@ msgstr "trier les paquets par taille sur disque" msgid "look for missing libraries" msgstr "regarder pour les librairies manquantes" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "déverser les résultats vers les fichiers" @@ -5486,7 +5483,7 @@ msgstr "faire diverses query sur les bases de données locale et dépôt" msgid "search from what package a file belongs" msgstr "rechercher à quel paquet appartient un fichier" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "afficher le changelog des paquets" @@ -5494,13 +5491,11 @@ msgstr "afficher le changelog des paquets" msgid "search what packages depend on the provided atoms" msgstr "rechercher quels paquets dépendent des atomes donnés" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "rechercher des paquets par description" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "montrer les fichiers appartenant aux atomes donnés" @@ -5543,8 +5538,7 @@ msgstr "Voici les paquets installés" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "montrer les librairies runtime requises par les atomes donnés" @@ -5560,8 +5554,7 @@ msgstr "montrer l'arborescence de suppression des atomes spécifiés" msgid "show atoms needing the provided libraries" msgstr "montrer les atomes nécessitant les librairies données" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "recherche les ensembles de paquets disponibles" @@ -5573,27 +5566,24 @@ msgstr "montrer les paquets associés au slot donné" msgid "show packages owning the provided tags" msgstr "montrer les paquets associés aux tags donnés" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "montrer quels paquets dépendent des atomes donnés" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "afficher plus de détails" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "afficher les résultats pour qu'ils soient utilisables par script" @@ -5681,7 +5671,7 @@ msgstr "" "générer la base de donnée des paquets installés en utilisant les fichiers du " "système [dernier espoir]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 #, fuzzy msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5706,358 +5696,22 @@ msgstr "" "paquets installés" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "gère les fonctionnalités du côté de la communauté" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "fonctions de gestion des dépôts de la communauté" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "recherche des paquets nouvellement compilés dans le système " - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analyser le répertoire du magasin Entropy directement" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "Réempaquetter les atomes spécifiés" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "ne rien demander sauf les trucs critiques" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "gérer seulement les atomes spécifiés" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"ajouter des laqpets binaires au dépôt sans affecter la portée (multipaquets)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "fonctions de gestion des miroirs des dépôts de la communauté" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" -"synchronisation des paquets, de la base de données, et quelques rangements" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "synchroniser tous les dépôts configurés" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "synchroniser les paquets entre les miroirs primaires" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "vérifier également l'intégrité des paquets" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"synchroniser la base de données du dépôt courant parmi les miroirs principaux" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "verrouiller la base de données du dépôt courant (côté serveur)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "déverrouiller la base de données du dépôt courant (côté serveur)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "verrouiller la base de données du dépôt courant (côté client)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "déverrouiller la base de données du dépôt courant (côté client)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "afficher l'état de verrouillage actuel" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "supprimer les paquets binaires absents des dépôts et expirés" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Calcul des paquets disponibles pou" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "gérer un dépôt" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(ré)initialiser la base de données du dépôt courant" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" -"ne pas réalimenter la base de données en utilisant les paquets du miroir" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(re)créer la base de données pour le dépôt spécifié" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "forcer manuellement un saut de révision pour le dépôt courant" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "synchroniser la base de données" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "purger les paquets des vieilles branches vers la branche courante" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "supprimer les atomes donnés de la base de données du dépôt" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "supprimer les atomes injectés donnés (tous si aucun atome spécifié)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "créer une base de données de dépôt vide à l'emplacement spécifié" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "passer les atomes donnés dans la branch spécifiée (ou world)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "faire une copie de sécurité de la base de données du dépôt courant" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" -"restaurer une ancienne copie de sécurité de la base de données du dépôt" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "activer le dépôt spécifié" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "désactiver le dépôt spécifié" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "afficher l'état de l'interface du serveur courant" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Paquets installés" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "gérer les dépendances manuelles des paquets" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"cloner un paquet dans un dépôt en lui assignant une étiquette arbitraire" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "déplacer des paquets d'un dépôt à l'autre" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "arrivée des dépendances dans" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copier les paquets d'un dépôt à l'autre" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "définir le dépôt par défaut" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "Essayez de mettre à jour vos dépôts et réessayez" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Dépôts présentement configurés" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "n'est pas listé dans le dépôt !" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Trier par dépôt" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Dépôt de destination" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" -"faites res recherches dans les bases de données du dépôt de la communauté" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "afficher à quel paquet les fichiers spécifiés appartiennent" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "montrer quels paquets dépendent des atomes donnés" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "lister tous les paquets du dépôt par défaut" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "recherche des paquets dans la base de données du dépôt par défaut" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "afficher les paquets ayant les étiquettes spécifiées" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "afficher les paquets ayant les étiquettes spécifiées" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "fonctions du gestionnaire de sources du paquet" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "fonction de compilation" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compiler les paquets appartenant aux catégories fournies" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "seulement lister les paquets" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "ne pas retirer les vieilles fentes de paquets" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "compiler les paquets dans les noms de groupe de paquets spécifiés" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "tout reconstruire" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "" -"exécuter une mise à jour de la base de données si tout s'est bien passé" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "exécuter une synchro du miroir si tout s'est bien passé" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "vérifier les paquets orphelins dans SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "fonctions de gestion du tableau d'affichage" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "ajouter un élément de nouvelle au tableau d'affichage" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "supprimer un élément de nouvelles du tableau d'affichage" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "lire le tableau d'affichage courant" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" -"voir pour des dépendances non satisfaites parmi les dépôts de la communauté" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "vérifier l'intégrité des fichiers des paquets locaux" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "gère les fonctionnalités du contenu généré par l'utilisateur" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "se connecter à un dépôt spécifié" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "se déconnecter d'un dépôt spécifié" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forcer l'action" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -6065,82 +5719,73 @@ msgstr "" "Gérer les documents du paquet pour le dépôt sélectionné (commentaires, " "fichiers, vidéos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "obtenir les documents disponibles pour la clé de paquet spécifié (exemple : " "x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "ajouter un nouveau document à la clé de paquet spécifiée (exemple ; x11-libs/" "qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" "Supprimer les documents de la base de données en utilisant leurs identifiants" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "Gérer les votes des paquets pour le dépôt sélectionné" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "obtenir un vote pour la clé de paquet spécifié (exemple : x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "ajouter un vote pour la clé de paquet spécifié (exemple : x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "gère le cache Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "nettoyer le cache d'Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "" "supprimer les paquets téléchargés et nettoyer les répertoires temporaires" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "afficher l'information système" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Vous devez installer 'sys-apps/entropy-server'. Faites-le !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Vous devez installer/mettre à jour 'sys-apps/entropy-server'. Faites-le !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "pas assez de paramètres" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 #, fuzzy msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "La base de données des paquets installés est introuvable ou endommagée. " "Veuillez la générer avec les outils 'equo database'" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -6148,26 +5793,26 @@ msgstr "" "Bonjour, je suis le rapporteur de bogues. J'ai le regret de vous informer " "qu'Equo a crashé. Ce sont des choses qui arrivent..." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Mais il y a quelque chose que vous pourriez faire pour nous aider à faire " "d'Equo une meilleure application" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- MÊME SI JE NE VEUX PAS QUE VOUS SOUMETTIEZ LE MÊME RAPPORT PLUSIEURS FOIS " "--" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Je suis maintenant en train de vous montrer ce qui s'est passé. Ne vous " "inquiétez pas, je suis là pour vous aider." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -6175,11 +5820,11 @@ msgstr "" "Je ne peux pas même pas écrire dans /tmp. Alors, veuillez copier l'erreur et " "l'envoyer à lxnay@sabayon.org" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Bien sûr que vous êtes sur Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 #, fuzzy msgid "" "Erm... Can I send the error, along with some information\n" @@ -6190,11 +5835,11 @@ msgstr "" "à propos de votre matériel à mes créateurs pour qu'ils me corrigent ? (votre " "adresse IP sera enregistrée)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "D'accord, d'accord... désolé !" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -6202,19 +5847,19 @@ msgstr "" "Si vous désirez être contacté (et activement supporté), répondez également " "aux questions ci-bas :" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Votre nom complet :" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Votre courriel :" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Ce que vous faisiez :" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6222,7 +5867,7 @@ msgstr "" "Merci beaucoup. Cette erreur a été rapportée et le problème sera réglé, " "espérons-le, dès que possible." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6231,11 +5876,11 @@ msgstr "" "Impossible d'envoyer le rapport. J'ai sauvegardé l'erreur dans /tmp/" "equoerror.txt. Quand vous le voudrez, envoyez-le à lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6244,7 +5889,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Rien à faire" @@ -6397,10 +6041,7 @@ msgstr "est endommagé" msgid "atom" msgstr "atome" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "dans" @@ -6426,6 +6067,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Voici les paquets qui seraient supprimés" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Voici les paquets qui seraient supprimés" @@ -6659,7 +6301,7 @@ msgstr "Installation terminée" msgid "These are the packages that would be masked" msgstr "Voici les paquets qui seraient marqués" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "Voulez-vous continuer ?" @@ -6697,8 +6339,7 @@ msgstr "Suppression refusée" msgid "Would you like to calculate dependencies ?" msgstr "Voulez-vous calculer les dépendances ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Voulez-vous les supprimer maintenant ?" @@ -6750,7 +6391,10 @@ msgstr "10 secondes" msgid "Libraries/Executables statistics" msgstr "Statistiques des Librairies/Fichiers exécutables" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Non trouvé" @@ -6758,763 +6402,1040 @@ msgstr "Non trouvé" msgid "Would you like to install them ?" msgstr "Voulez-vous les installer ?" -#: ../../server/reagent.py:42 +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "show current repositories status" -msgstr "afficher l'état des dépôts" +msgid "available tests" +msgstr "disponible" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "faites des recherches dans les bases de données du dépôt" - -#: ../../server/reagent.py:55 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "recherche des paquets dans la base de données du dépôt par défaut" +msgid "dependencies test" +msgstr "Test de dépendances" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(ré)initialiser la base de données du dépôt courant" +msgid "libraries test" +msgstr "Essai de librairies" -#: ../../server/reagent.py:77 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "do not include reverse dependencies" -msgstr "Impossible de trouver les dépendances requises" +msgid "dump results to file" +msgstr "déverser les résultats vers les fichiers" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "Basculer dans la branche spécifiée du dépôt" - -#: ../../server/reagent.py:81 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "cloner un paquet en lui assignant une étiquette arbitraire" - -#: ../../server/reagent.py:89 -#, fuzzy -msgid "mask given package in given repository" -msgstr "utilisation des paquets dans le dépôt" - -#: ../../server/reagent.py:90 -#, fuzzy -msgid "unmask given packages in given repository" -msgstr "utilisation des paquets dans le dépôt" - -#: ../../server/reagent.py:116 -#, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "vérifier les paquets orphelins dans SPM" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" -msgstr "vérifier les paquets orphelins dans SPM" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" +msgid "library linking test (using repository metadata)" msgstr "regarder pour les librairies manquantes" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "regarder pour les librairies manquantes" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "" -"supprimer les paquets téléchargés et nettoyer les répertoires temporaires)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" -"Début de la synchro des données entre les miroirs (paquets/base de données)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Abandon !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Veuillez insérer un message de confirmation" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Voulez-vous continuer avec la procédure de rangement ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Quitter/Confirmer" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Texte de notice" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL pertinent (optionnel)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Tableau d'affichage du dépôt, insertion d'un nouvel élément" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Veuillez sélectionner l'élément à supprimer" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer ceci ?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Début du verrouillage des miroirs de téléchargement" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Un problème s'est produit avec au moins un miroir" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Restauration complétée" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Début du déverrouillage des miroirs de téléchargement" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Restauration complétée" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" -"Début du verrouillage des bases de données des miroirs de téléchargement" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Verrouillage des miroirs de téléchargement complété" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" -"Début du déverrouillage des bases de données des miroirs de téléchargement" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Déverrouillage des miroirs de téléchargements complété" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "BASE DE DONNÉES" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "TÉLÉCHARGER" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "dans les dépôts" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Erreur de synchro de la base de données, impossible de continuer." - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Calcul des paquets disponibles pou" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "État du dépôt distant de la base de données Entropy" +msgid "package names" +msgstr "Atomes du paquet" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Hôte" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Révision" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Révision locale de la base de données à" +msgid "verify local packages integrity" +msgstr "vérifier également l'intégrité des paquets" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "choisir sur quelle branche opérer" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "fonctions de manipulation des dépôts du paquet" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "synchroniser les dépôts des paquets parmi les miroirs principaux" - -#: ../../server/activator.py:61 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "repository handling functions" -msgstr "fonctions de manipulation des dépôts du paquet" +msgid "verify remote packages integrity" +msgstr "vérifier également l'intégrité des paquets" -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Importing keypair for repository" -msgstr "dépôt invalide" +msgid "execute query" +msgstr "Exécuter la copie" -#: ../../server/server_key.py:125 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Another keypair already exists for repository" -msgstr "n'est pas listé dans le dépôt !" +msgid "available queries" +msgstr "disponible" -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "user package.mask" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Vous devriez les installer dès que possible" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Dépôt de destination" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Trier par dépôt" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "n'est pas listé dans le dépôt !" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "entré le dépôt" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Insérer un URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Informations du dépôt" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "dépôt invalide" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "activer le dépôt spécifié" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "Êtes-vous prêt(e) ?" +msgid "tag name" +msgstr "Nom d'hôte" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "n'est pas disponible" +msgid "show libraries (.so) required by matched packages" +msgstr "Voici les paquets correspondants" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "montrer quels paquets dépendent des atomes donnés" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "utilisation des paquets dans le dépôt" +msgid "include build dependencies" +msgstr "Impossible de trouver les dépendances requises" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Identifiants du paquet" +msgid "search through package sets" +msgstr "recherche les ensembles de paquets disponibles" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_key.py:377 -msgid "Key size" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nom du groupe de paquets" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "rechercher des paquets par description" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informations du dépôt" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Description du paquet" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Rien trouvé" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "librairies" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Date de création" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "aucun paquet spécifié." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Activation" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Activé" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "Déjà activé" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Désactivation" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Désactivé" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "déjà désactivé" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 +#: ../../server/eit/commands/query.py:313 #, fuzzy -msgid "Invalid syntax." -msgstr "Chaîne invalide" +msgid "sets found" +msgstr "utilisateur introuvable" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/query.py:347 #, fuzzy -msgid "No valid repository specified." -msgstr "Pas de dépôts valides spécifiés." +msgid "packages found" +msgstr "Aucun paquet trouvé" -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Ne peut pas correspondre" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 +#: ../../server/eit/commands/query.py:356 #, fuzzy -msgid "No packages selected." -msgstr "Aucun paquet sélectionné" +msgid "miscellaneous package metadata queries" +msgstr "Forcer la mise à jour des métadonnées des paquets" -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dépendances de paquets" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Pas de dépendances" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Test de dépendances" - -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "dépendances manuelles pour" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Test de dépendances" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Confirmer" - -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "Dépendances manuelles ajoutées avec succès" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Masquage du paquet" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Dépaquettage" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Paquets correspondants à supprimer" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Pas assez de paramètres" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Voici les paquets qui seraient supprimés de la base de données" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Suppression des paquets sélectionnés" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" -"Paquets supprimés. Pour supprimer les paquets binaires, exécuter l'activateur" - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Recherche de paquets injectés à supprimer" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Voici les paquets présentés pour suppression" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Changement de branche, assurez-vous que vous paquets sont en synchro" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Collecte des paquets qui seraient marqués" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Voici les paquets qui seraient marqués" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Pas de dépôts valides spécifiés." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Dépôts spécifiés invalides." - -#: ../../server/server_reagent.py:738 -#, fuzzy -msgid "Entropy repository has been initialized" -msgstr "Votre dépôt par défaut n'est pas initialisé" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Création de la base de données vide dans" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Impossible d'écraser le fichier déjà existant" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Saut de la base de données du dépôt" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Pas de paquets valides à réempaquetter" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Vérification de la base de données pour des différences" - -#: ../../server/server_reagent.py:921 -#, fuzzy -msgid "Invalid atom" -msgstr "Action invalide." - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "? Zarro thinggz totoo ?" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Voici les paquets qui seront modifiés avec le statut injecté" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Voulez-vous les transformer maintenant ?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformation depuis la base de données" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Transformation de la base de données complétée" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "expiré" - -#: ../../server/server_reagent.py:960 -#, fuzzy -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -#, fuzzy -msgid "Remove this package?" -msgstr "Supprimer les paquets" - -#: ../../server/server_reagent.py:989 -#, fuzzy -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Choisir quel groupe de paquets vous voulez ajouter" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -#, fuzzy -msgid "Add this package?" -msgstr "Masquer ce paquet" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Voici les paquets qui seraient installés/mis à jour" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -#, fuzzy -msgid "warning" -msgstr "Avertissement" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Voulez-vous les empaquetter maintenant ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "à l'intérieur" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Compression des paquets" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Saut de l'entrée du SPM endommagé, veuillez le recompiler" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Rien à faire, vérifiez plus tard." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Entrées gérées" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 #, fuzzy msgid "local revision" msgstr "révision" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 #, fuzzy msgid "stored packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "Paquets téléchargés" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "Paquet masqué" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "À être ajouté" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "bascule" -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Voici les paquets qui seraient installés" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Pas de groupe de paquets trouvé" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "groupe de paquets introuvable" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Rien trouvé" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "afficher l'état des dépôts" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "paquets endommagés" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "énumérer les paquets installés" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "pas disponible" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "paquets" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/init.py:59 +#, fuzzy +msgid "Entropy repository has been initialized" +msgstr "Votre dépôt par défaut n'est pas initialisé" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Dépôt actuel" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Dépôt de destination" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nom du groupe de paquets" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Rien trouvé" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "erreur de socket" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Révision du dépôt" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "afficher l'état des dépôts" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "cette sortie" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "Vers le dépôt" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Révision du dépôt" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Mettre à jour les dépôts" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Choisir le dépôt" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Confirmer le message" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Veuillez insérer un message de confirmation" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "État du dépôt distant de la base de données Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Hôte" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "À distance" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "local" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Abandon !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Obtenir l'information sur le paquet" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "pas disponible, c'est ok" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Ajouter un élément au tableau d'affichage" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Supprimer un élément du tableau d'affichage" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Tableau d'affichage" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Insérer un URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URL" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Veuillez sélectionner l'élément à supprimer" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Êtes-vous sûr(e) de vouloir supprimer ceci ?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Quitter/Confirmer" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Obtenir le tableau d'affichage du dépôt" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "dépôt" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Paquets installés" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Suppression des paquets sélectionnés" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Ne peut pas correspondre" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Pas de paquets valides à réempaquetter" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Vérification de la base de données pour des différences" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Installation du paquet" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "? Zarro thinggz totoo ?" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "a été injecté" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformation depuis la base de données" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Transformation de la base de données complétée" +msgid "Action completed" +msgstr "injection terminée" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "expiré" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" +msgid "Select packages for removal" +msgstr "Recherche de paquets injectés à supprimer" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +#, fuzzy +msgid "Remove this package?" +msgstr "Supprimer les paquets" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Correspondances à supprimer de la base de données du dépôt" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Choisir quel groupe de paquets vous voulez ajouter" +msgid "Select packages to add" +msgstr "Certains paquets sont masqués" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +#, fuzzy +msgid "Add this package?" +msgstr "Masquer ce paquet" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Ils seraient ajoutés à la base de données système" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +#, fuzzy +msgid "warning" +msgstr "Avertissement" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Voulez-vous les empaquetter maintenant ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "à l'intérieur" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Compression des paquets" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Saut de l'entrée du SPM endommagé, veuillez le recompiler" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Rien à faire, vérifiez plus tard." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Entrées gérées" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Paquets installés" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "n'est pas disponible" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Saut du dépôt" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "comparer un paquet dans les dépôts" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Téléchargement du dépôt selon les mots-clés spécifiés" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "afficher l'état de verrouillage actuel" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Table d'état des mirroirs" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Serveur" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Vers le dépôt" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "dans le dépôt" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "montrer quels paquets dépendent des atomes donnés" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Tous les dépôts étaient déjà à jour." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Calcul des paquets disponibles pou" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "fichier introuvable" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "montrer les fichiers appartenant aux atomes donnés" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "Impossible de trouver les dépendances requises" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "déplacer des paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Pas de dépendances" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Test de dépendances" + +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "dépendances manuelles pour" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Test de dépendances" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Confirmer" + +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "Dépendances manuelles ajoutées avec succès" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Paquets installés" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dépendances de paquets" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configuration du paquet" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copier les paquets d'un dépôt à l'autre" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Dépaquetage du paquet de dépendance" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forcer l'action" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Essayez de mettre à jour vos dépôts et réessayez" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Paquets installés" + +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Identifiants du paquet" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "Base de données distante a subitement été verrouillée" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "entré le dépôt" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Insérer un URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Informations du dépôt" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Vous devriez les installer dès que possible" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "activer le dépôt spécifié" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Êtes-vous prêt(e) ?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "n'est pas disponible" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "utilisation des paquets dans le dépôt" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Identifiants du paquet" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Date de création" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Vous devriez les installer dès que possible" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Dépôt de destination" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Trier par dépôt" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "n'est pas listé dans le dépôt !" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "dépôt invalide" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "gérer un dépôt" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Atomes du paquet" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Impossible de configurer le répertoire de cache" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "non supporté" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Installation du paquet" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "recherche les paquets dans les dépôts" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Impossible de changer de branche" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branche" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Action invalide." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "gérer un dépôt" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Dépôt actuel" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7574,125 +7495,131 @@ msgstr "" msgid "Application" msgstr "Application" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Connecté en tant que" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "non supporté" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Vote enregistré avec succès" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Erreur à l'enregistrement du vote" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Déjà supprimé" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Applications" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Applications sans groupe" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "Paquets à rétrograder" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Options de l'application" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Mises à jour d'applications" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Options de l'application" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proposé" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destination" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Sécurité" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Application" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 #, fuzzy msgid "Please wait, loading..." msgstr "Veuillez patienter" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Les dépôts sont en cours de mise à jour" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Pas d'alertes" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Il n'y a pas d'élément à afficher" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nom de fichier" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "définir le dépôt par défaut" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Actif" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Mettre à jour" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Révision" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identifiant du dépôt" @@ -8107,6 +8034,10 @@ msgstr "Certains paquets sont masqués" msgid "Masked package" msgstr "Paquet masqué" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Activé" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Veuillez confirmer les actions ci-haut" @@ -10199,12 +10130,488 @@ msgstr "Icône de notification" msgid "_Load Package Manager" msgstr "_Lancer le gestionnaire de paquets" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" +#~ msgid "handles community-side features" +#~ msgstr "gère les fonctionnalités du côté de la communauté" + +#~ msgid "community repositories management functions" +#~ msgstr "fonctions de gestion des dépôts de la communauté" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "recherche des paquets nouvellement compilés dans le système " + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analyser le répertoire du magasin Entropy directement" + +#~ msgid "repackage the specified atoms" +#~ msgstr "Réempaquetter les atomes spécifiés" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "ne rien demander sauf les trucs critiques" + +#~ msgid "manage only the specified atoms" +#~ msgstr "gérer seulement les atomes spécifiés" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "ajouter des laqpets binaires au dépôt sans affecter la portée " +#~ "(multipaquets)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "fonctions de gestion des miroirs des dépôts de la communauté" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "" +#~ "synchronisation des paquets, de la base de données, et quelques rangements" + +#~ msgid "sync all the configured repositories" +#~ msgstr "synchroniser tous les dépôts configurés" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "synchroniser les paquets entre les miroirs primaires" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "synchroniser la base de données du dépôt courant parmi les miroirs " +#~ "principaux" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "verrouiller la base de données du dépôt courant (côté serveur)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "déverrouiller la base de données du dépôt courant (côté serveur)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "verrouiller la base de données du dépôt courant (côté client)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "déverrouiller la base de données du dépôt courant (côté client)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "supprimer les paquets binaires absents des dépôts et expirés" #, fuzzy -#~ msgid "reset error" -#~ msgstr "erreur de socket" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Calcul des paquets disponibles pou" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(ré)initialiser la base de données du dépôt courant" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "" +#~ "ne pas réalimenter la base de données en utilisant les paquets du miroir" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(re)créer la base de données pour le dépôt spécifié" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "forcer manuellement un saut de révision pour le dépôt courant" + +#~ msgid "synchronize the database" +#~ msgstr "synchroniser la base de données" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "purger les paquets des vieilles branches vers la branche courante" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "supprimer les atomes donnés de la base de données du dépôt" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "supprimer les atomes injectés donnés (tous si aucun atome spécifié)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "créer une base de données de dépôt vide à l'emplacement spécifié" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "passer les atomes donnés dans la branch spécifiée (ou world)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" + +#~ msgid "backup current repository database" +#~ msgstr "faire une copie de sécurité de la base de données du dépôt courant" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "" +#~ "restaurer une ancienne copie de sécurité de la base de données du dépôt" + +#~ msgid "enable the specified repository" +#~ msgstr "activer le dépôt spécifié" + +#~ msgid "disable the specified repository" +#~ msgstr "désactiver le dépôt spécifié" + +#~ msgid "show the current Server Interface status" +#~ msgstr "afficher l'état de l'interface du serveur courant" + +#, fuzzy +#~ msgid "handle packages dependencies" +#~ msgstr "gérer les dépendances manuelles des paquets" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "cloner un paquet dans un dépôt en lui assignant une étiquette arbitraire" + +#~ msgid "pulls dependencies in" +#~ msgstr "arrivée des dépendances dans" + +#~ msgid "set the default repository" +#~ msgstr "définir le dépôt par défaut" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Dépôts présentement configurés" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Trier par dépôt" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Dépôt de destination" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "" +#~ "faites res recherches dans les bases de données du dépôt de la communauté" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "afficher à quel paquet les fichiers spécifiés appartiennent" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "montrer quels paquets dépendent des atomes donnés" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "lister tous les paquets du dépôt par défaut" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "recherche des paquets dans la base de données du dépôt par défaut" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "afficher les paquets ayant les étiquettes spécifiées" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "afficher les paquets ayant les étiquettes spécifiées" + +#~ msgid "source package manager functions" +#~ msgstr "fonctions du gestionnaire de sources du paquet" + +#~ msgid "compilation function" +#~ msgstr "fonction de compilation" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compiler les paquets appartenant aux catégories fournies" + +#~ msgid "just list packages" +#~ msgstr "seulement lister les paquets" + +#~ msgid "do not pull old package slots" +#~ msgstr "ne pas retirer les vieilles fentes de paquets" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "compiler les paquets dans les noms de groupe de paquets spécifiés" + +#~ msgid "rebuild everything" +#~ msgstr "tout reconstruire" + +#~ msgid "run database update if all went fine" +#~ msgstr "" +#~ "exécuter une mise à jour de la base de données si tout s'est bien passé" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "exécuter une synchro du miroir si tout s'est bien passé" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "fonctions de gestion du tableau d'affichage" + +#~ msgid "add a news item to the notice board" +#~ msgstr "ajouter un élément de nouvelle au tableau d'affichage" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "supprimer un élément de nouvelles du tableau d'affichage" + +#~ msgid "read the current notice board" +#~ msgstr "lire le tableau d'affichage courant" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "voir pour des dépendances non satisfaites parmi les dépôts de la " +#~ "communauté" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "vérifier l'intégrité des fichiers des paquets locaux" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Vous devez installer 'sys-apps/entropy-server'. Faites-le !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Vous devez installer/mettre à jour 'sys-apps/entropy-server'. Faites-le !" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "afficher l'état des dépôts" + +#~ msgid "do some searches into repository databases" +#~ msgstr "faites des recherches dans les bases de données du dépôt" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "recherche des paquets dans la base de données du dépôt par défaut" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(ré)initialiser la base de données du dépôt courant" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "Basculer dans la branche spécifiée du dépôt" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "vérifier l'intégrité distante des atomes donnés (ou world)" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "cloner un paquet en lui assignant une étiquette arbitraire" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "utilisation des paquets dans le dépôt" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "utilisation des paquets dans le dépôt" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "vérifier les paquets orphelins dans SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "regarder pour les librairies manquantes" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "" +#~ "supprimer les paquets téléchargés et nettoyer les répertoires temporaires)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Début de la synchro des données entre les miroirs (paquets/base de " +#~ "données)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Voulez-vous continuer avec la procédure de rangement ?" + +#~ msgid "Notice text" +#~ msgstr "Texte de notice" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL pertinent (optionnel)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Tableau d'affichage du dépôt, insertion d'un nouvel élément" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Début du verrouillage des miroirs de téléchargement" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Un problème s'est produit avec au moins un miroir" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Restauration complétée" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Début du déverrouillage des miroirs de téléchargement" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Restauration complétée" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "" +#~ "Début du verrouillage des bases de données des miroirs de téléchargement" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Verrouillage des miroirs de téléchargement complété" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "Début du déverrouillage des bases de données des miroirs de téléchargement" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Déverrouillage des miroirs de téléchargements complété" + +#~ msgid "DATABASE" +#~ msgstr "BASE DE DONNÉES" + +#~ msgid "DOWNLOAD" +#~ msgstr "TÉLÉCHARGER" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "dans les dépôts" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Erreur de synchro de la base de données, impossible de continuer." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Révision locale de la base de données à" + +#~ msgid "choose on what branch operating" +#~ msgstr "choisir sur quelle branche opérer" + +#~ msgid "package repositories handling functions" +#~ msgstr "fonctions de manipulation des dépôts du paquet" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "synchroniser les dépôts des paquets parmi les miroirs principaux" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "fonctions de manipulation des dépôts du paquet" + +#~ msgid "no package specified." +#~ msgstr "aucun paquet spécifié." + +#~ msgid "Enabling" +#~ msgstr "Activation" + +#~ msgid "already enabled" +#~ msgstr "Déjà activé" + +#~ msgid "Disabling" +#~ msgstr "Désactivation" + +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +#~ msgid "already disabled" +#~ msgstr "déjà désactivé" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Chaîne invalide" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Pas de dépôts valides spécifiés." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Aucun paquet sélectionné" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Masquage du paquet" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Dépaquettage" + +#~ msgid "Matching packages to remove" +#~ msgstr "Paquets correspondants à supprimer" + +#~ msgid "Not enough parameters" +#~ msgstr "Pas assez de paramètres" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Voici les paquets qui seraient supprimés de la base de données" + +#~ msgid "Removing selected packages" +#~ msgstr "Suppression des paquets sélectionnés" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Paquets supprimés. Pour supprimer les paquets binaires, exécuter " +#~ "l'activateur" + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Voici les paquets présentés pour suppression" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "Changement de branche, assurez-vous que vous paquets sont en synchro" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Collecte des paquets qui seraient marqués" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Voici les paquets qui seraient marqués" + +#~ msgid "No valid repositories specified." +#~ msgstr "Pas de dépôts valides spécifiés." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Dépôts spécifiés invalides." + +#~ msgid "Creating empty database to" +#~ msgstr "Création de la base de données vide dans" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Impossible d'écraser le fichier déjà existant" + +#~ msgid "Bumping Repository database" +#~ msgstr "Saut de la base de données du dépôt" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Voici les paquets qui seront modifiés avec le statut injecté" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Voulez-vous les transformer maintenant ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformation depuis la base de données" + +#~ msgid "Database transform complete" +#~ msgstr "Transformation de la base de données complétée" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Choisir quel groupe de paquets vous voulez ajouter" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Voici les paquets qui seraient installés/mis à jour" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Voici les paquets qui seraient installés" + +#~ msgid "No package sets found" +#~ msgstr "Pas de groupe de paquets trouvé" + +#~ msgid "package set not found" +#~ msgstr "groupe de paquets introuvable" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Transformation de la base de données complétée" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Choisissez quel ensemble de paquets vous désirez supprimer" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Choisir quel groupe de paquets vous voulez ajouter" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "L'interface du serveur Entropy doit être exécutée en tant que root" #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Impossible d'acquérir le verrouillages des ressources d'Entropy" @@ -10375,9 +10782,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "empty username" #~ msgstr "nom d'utilisateur vide" -#~ msgid "user not found" -#~ msgstr "utilisateur introuvable" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "vous devez vous authentifier au site Web pour mettre à jour votre format " @@ -10459,10 +10863,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "EAPI3 Service status" #~ msgstr "État du service EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "Base de données distante a subitement été verrouillée" - #~ msgid "EAPI3 Service" #~ msgstr "Service EAPI3" @@ -10825,9 +11225,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "From repository" #~ msgstr "Du dépôt" -#~ msgid "To repository" -#~ msgstr "Vers le dépôt" - #~ msgid "Copy instead of move?" #~ msgstr "Copier au lieu de déplacer ?" @@ -10879,18 +11276,9 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Check mode" #~ msgstr "Vérifier le mode" -#~ msgid "Get repository notice board" -#~ msgstr "Obtenir le tableau d'affichage du dépôt" - -#~ msgid "Remove notice board entry" -#~ msgstr "Supprimer un élément du tableau d'affichage" - #~ msgid "Entry Identifiers" #~ msgstr "Identificateurs de l'entrée" -#~ msgid "Add notice board entry" -#~ msgstr "Ajouter un élément au tableau d'affichage" - #~ msgid "Notice link" #~ msgstr "Lien de la notice" @@ -10978,9 +11366,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Previous database copied to file" #~ msgstr "Base de données antérieure copiée vers le fichier" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Tous les dépôts étaient déjà à jour." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "Les dépôts étaient déjà à jour. D'autres ont été mis à jour." @@ -11301,9 +11686,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "No valid repositories" #~ msgstr "Pas de dépôts valides" -#~ msgid "not available" -#~ msgstr "pas disponible" - #~ msgid "is empty" #~ msgstr "est vide" @@ -11389,9 +11771,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Execute" #~ msgstr "Exécuter" -#~ msgid "Destination repository" -#~ msgstr "Dépôt de destination" - #~ msgid "Copy/move packages" #~ msgstr "Copier/déplacer paquets" @@ -11467,9 +11846,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Impossible de déplacer/copier des paquets de différents dépôts" -#~ msgid "Execute copy" -#~ msgstr "Exécuter la copie" - #~ msgid "Entropy packages move/copy" #~ msgstr "Déplacement/copie de paquets Entropy" @@ -11482,9 +11858,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Insert your new notice board entry" #~ msgstr "Insérer votre nouvel élément de tableau d'affichage" -#~ msgid "Server" -#~ msgstr "Serveur" - #~ msgid "current revision" #~ msgstr "Révision courante" @@ -11503,9 +11876,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Choose the execution mode" #~ msgstr "Choisir le mode d'exécution" -#~ msgid "Commit message" -#~ msgstr "Confirmer le message" - #~ msgid "Pretend mode" #~ msgstr "Mode de simulation" @@ -11581,9 +11951,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Choisir le dépôt" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Choisir les dépôts que voulez vérifier" @@ -11602,9 +11969,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "You must now either press the" #~ msgstr "Vous devez maintenant appuyer sur" -#~ msgid "Update Repositories" -#~ msgstr "Mettre à jour les dépôts" - #~ msgid "or the" #~ msgstr "ou la" @@ -11679,9 +12043,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Une instance basée sur UGC Client est nécessaire" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Impossible de configurer le répertoire de cache" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Une instance d'interface Client valide est requise." @@ -11829,9 +12190,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "Downloading packages system mask" #~ msgstr "Téléchargement du masque système des paquets" -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Téléchargement du dépôt selon les mots-clés spécifiés" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Téléchargement du fichier des paquets étiquettés en conflit" @@ -11869,9 +12227,6 @@ msgstr "_Lancer le gestionnaire de paquets" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "l'identifiant de l'atome est dupliqué, saut" -#~ msgid "file not found" -#~ msgstr "fichier introuvable" - #~ msgid "invalid checksum" #~ msgstr "somme de contrôle invalide" diff --git a/misc/po/it.po b/misc/po/it.po index 30a3a8cd8..5f1157afc 100644 --- a/misc/po/it.po +++ b/misc/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Spritz 0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2010-09-29 13:49+0100\n" "Last-Translator: Fabio Erculiani \n" "Language-Team: Fabio Erculiani \n" @@ -19,36 +19,36 @@ msgstr "" "X-Poedit-Country: ITALY\n" "X-Poedit-SourceCharset: iso-8859-1\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Sincronizzazione database corrente" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "attendere prego" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Rimozione voce" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Aggiunta voce" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Esportazione tabella database" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Esportazione database completata." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,19 +57,19 @@ msgstr "Esportazione database completata." msgid "ATTENTION" msgstr "ATTENZIONE" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "Errore SPM" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "Identificativo univoco in SPM non trovato per" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "aggiornamento layout metadati della repository, attendere prego!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "Generazione metadati provided_libs, attendere!" @@ -254,16 +254,16 @@ msgstr "Ricaricamento moduli Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "errore" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "non trovato" @@ -314,7 +314,7 @@ msgstr "Impossibile eseguire Spm pkg_config() per" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -377,7 +377,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -411,7 +411,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "non esiste" @@ -450,7 +450,7 @@ msgid "Error calculating dependencies" msgstr "Errore di calcolo dipendenze" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "non supportato" @@ -514,462 +514,462 @@ msgstr "connessione al mirror" msgid "setting directory to" msgstr "impostazione directory a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Interfaccia Mirror Entropy caricata" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "mirror repository" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "mirror pacchetti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "ricerca file su mirror" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "sbloccaggio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "bloccaggio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "mirror" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "mirror già bloccato" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "mirror già sbloccato" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "mirror in download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "mirror già bloccato in download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "mirror già sbloccato in download" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "in download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "mirror bloccato con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "mirror non bloccato" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "mirror sbloccato con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "errore sbloccaggio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "mirror non bloccato" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "connessione per scaricamento database" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "scaricamemento database" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "pacchetto" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "non è elencato nella repository !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "verifica firma pacchetto" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "scaricato con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "firma non combaciante. riscaricamento..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" "sembra corrotto. Prendi in considerazione di ripacchettizzarlo. Mi arrendo!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "mirror senza un file revisione database valido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "impossibile scaricare revisione repository" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "mirror senza un file revisione valido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "attendo fino a 2 minuti prima di arrendermi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "mirror sbloccato" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Statistiche locali" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "cartella di upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "file pronti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "cartella pacchetti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "rimozione" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Pacchetti da rimuovere" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Pacchetti da spostare localmente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Pacchetti da inviare" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Dimensione totale rimozione" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Dimensione totale upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Dimensione totale download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Statistiche remote per" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "pacchetti remoti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "file immagazzinati" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Calcolo code" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "rimozione pacchetto+firma" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "sync" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "rimozione completata" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "copia file+firma nella repository" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "problemi di upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "motivo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "upload completato con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "errori di download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "download completato con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "Controllo QA file di pacchetto" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "file di pacchetto fallato, correggere per favore" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "inizio sincronizzazione pacchetti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "sincronizzazione paccheti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "errore socket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "su" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "niente da fare su" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Espansione code" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "niente da sincronizzare per" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Vuoi eseguire i passi di cui sopra ?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "No" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "interruzione tastiera!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "devi pacchettizzarli di nuovo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "eccezione catturata" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "almeno un mirror è stato sincronizzato correttamente!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "pulizia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "raccolta pacchetti scaduti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "raccolta paccheti scaduti nelle branch selezionate" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "niente da rimuovere su questa branch" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "questi sono i pacchetti scaduti" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Vuoi continuare ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "rimozione pacchetti remoti" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "errori di rimozione" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "rimozione pacchetti locali" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "rimossi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "scaricamento notice board dai mirror a" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "notice board scaricata con successo da" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "rimozione notice board da" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "rimozione notice board fallito su" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "rimozione notice board eseguita con successo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "upload notice board da" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "upload notice board fallito su" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "upload notice board eseguito con successo" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "Le chavi per la repository sono scadute" @@ -983,8 +983,8 @@ msgid "download path" msgstr "path download" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "errori" @@ -992,279 +992,291 @@ msgstr "errori" msgid "failed to download from mirror" msgstr "download da mirror fallito" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Impossibile scompattare" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Problemi con treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Reinserimento vecchie informazioni" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "package sets configurati" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Nessuno configurato" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "creazione dump database compresso + firma" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "path repository" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "dump leggero" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "checksum dump leggero" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "istanziatore" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "compressione database + firma" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "dati repository composti" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "checksum repository" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "firma compressa" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "preparazione database non compresso per upload" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "EAPI disabilitato" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "preparazione all'upload del database sul mirror" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "upload fallito, non sblocco e continuo" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "repository già disabilitata" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "repository abilitata" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problemi di download" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "lettore notice board repository" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "sincronizzazione package sets" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() ha riportato errori" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Questi sono i pacchetti che vorrebbero essere rimossi" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problemi di upload" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "sincronizzazione database completata con successo" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "Mirror non sbloccati. Sincronizzali." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 #, fuzzy msgid "cannot store updates RSS cache" msgstr "impossibile aggiornare dati treeupdates" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INIETTA" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "è stato iniettato" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "esegui quickpkg manualmente per aggiornare il database embedded" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Database repository aggiornato comunque" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "pacchetto senza keywords, sarà mascherato!" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "repository non configurata" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "repository id protetto, impossibile usarlo, mi dispiace..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Revisione repository" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "impostazione a 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repository" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "sincronizzazione package sets" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "impossibile risolvere" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Inizializzazione database Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Vuoi inizializzare la tua repository di default ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "Tag specificata non valida" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "inglobamento dei pacchetti selezionati dalle branch" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "niente da fare" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "questi sono i pacchetti che saranno inglobati" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "controllo hash pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "hash non combacia per" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "md5 errato" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "errore scaricando i pacchetti dai mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "esecuzione su branch" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "aggiornamento pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "pacchetto inglobato" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Impossibile toccare il database di sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Preparazione allo spostamento dei pacchetti selezionati a" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Preparazione alla copia dei pacchetti selezionati" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Note" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1272,439 +1284,438 @@ msgstr "" "tutti i pacchetti vecchi con scope in conflitto saranno rimossi dalla " "destinazione a meno che non siano iniettati" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nuova tag" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "dipendenza inversa" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "dipendenza" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "migrazione" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "impossibile migrare, pacchetto non trovato, salto" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "spostamento file" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "caricamento dati dal database sorgente" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "La chiave GPG era disponibile in" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "iniettamento dati nel database di destinazione" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "rimozione voce dal database sorgente" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "atomo gestito con successo" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Iniezione metadati entropy all'interno dei pacchetti creati" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "Per tua informazione, il sistema GPG non è stato caricato" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "iniezione metadati entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "iniezione completata" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "rimozione pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Verifica integrità dei pacchetti selezionati" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Tutti i pacchetti nella repository saranno controllati." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Questa è la list dei pacchetti che vorrebbero essere controllati" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Lavoro sul mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "controllo firma" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "verifica firma di" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NON sano" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Questo è l'elenco dei pacchetti danneggiati" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Mirror" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistiche" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Numero di pacchetti controllati" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Numero di pacchetti sani" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Numero di pacchetti danneggiati" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "locale" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "controllo stato di" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "è corrotto, firma immagazzinata" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "pacchetti controllati" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "pacchetti sani" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "pacchetti corrotti" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "pacchetti scaricati" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "scaricamenti falliti" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "Firma pacchetti con chiave GPG per la repository" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Tutti i pacchetti mancanti nella repository saranno scaricati." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG non disponibile" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Chiavi non disponibili per" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "firma pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Errore sconosciuto durante firma pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "pacchetti firmati" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponibile" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "upload/ignorato" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Inizio scaricamento file mancanti" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Ricerca file mancanti/corrotti su un altro mirror" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Pacchetti binari scaricati con successo." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Questi sono i pacchetti che non sono stati trovati online" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Non saranno controllati" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Per favore, configura la tua branch a" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "e riprova" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Copiatura database (se non esiste)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Migrazione pacchetti" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Ignoro" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "già in branch" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "ciclo di migrazione completato" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Esecuzione test pacchetti SPM orfani" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Scansione pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "non più trovato" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Stringa pacchetti" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Controllo" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Esecuzione test dipendenze" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Queste sono le dipendenze non trovate" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Richiesto da" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "dalla repo" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Ogni dipendenza è soddisfatta. Tutto a posto." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Lista di pacchetti rotti ed accoppiati" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Riversamento risultati dentro questi file" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Il Sistema è sano" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Accoppiamento librerie con Spm, attendere prego" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Questi sono i pacchetti accoppiati" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Nessun pacchetto accoppiato" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "La tua repository di default non è inizializzata" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Vuoi inizializzare la tua repository di default ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Elaborazione con repository non inizializzata" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Database Entropy già bloccato da te :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Blocco e sincronizzazione database Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Tabella stato dei mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Sbloccato" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Bloccato" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "impossibile bloccare mirror" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "dizionario repodata è corrotto" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "indicizzazione repository" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Inizializzazione database vuoto" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "nelle repository" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "inizializzato con successo" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "aggiunta pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "pacchetto aggiunto" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "dipendenze manuali per" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Queste sono le dipendenze non trovate" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Dipendenze mancanti" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Sei sicuro ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1712,147 +1723,148 @@ msgstr "Sei sicuro ?" msgid "Yes" msgstr "Si" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Risoluzione metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Blocco database completato" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Eccezione catturata, chiusura processi" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "repository lato server" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "community repository" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Istanza Interfaccia Server Entropy su repository" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "branch corrente" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Repository correntemente configurate" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "Chiave GPG scaduta" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "per favore correggere" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "Errore GPG inaspettato" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "ignoro" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "file di config" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "controllo sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "ci sono file di configurazione non ancora aggiornati" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "trovati dep_rewrites per questo pacchetto" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "Da aggiungere" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "sostituito" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "fa in modo che le regole di dipendenza siano più severe" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "aggiornamento pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "aggiunta pacchetto" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "rimozione pacchetto" @@ -1935,8 +1947,7 @@ msgstr "Aggiornamento database di sistema usando repository" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repository" @@ -2329,7 +2340,7 @@ msgstr "Scaricamento multiplo" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "pacchetti" @@ -2387,16 +2398,8 @@ msgstr "Configurazione" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Un'altra istanza Entropy è in esecuzione." @@ -2753,7 +2756,7 @@ msgstr "Repository aggiornate correttamente" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Tutto fatto" @@ -3039,75 +3042,75 @@ msgstr "verifica firma fallita, riprova più tardi" msgid "installing" msgstr "installazione" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Dipendenza runtime" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Dipendenza successiva" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Dipendenza aggiunta manualmente (dallo staff)" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Dipendenza di compilazione" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "Repository Client corrotta. Per favore ripristinare un backup." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "motivo non disponibile" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask lato utente" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "Keywords di sistema" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask lato utente" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "package.keywords repository lato utente (tutti i pacchetti)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "package.keywords repository lato utente" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords lato utente" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "mascherato completamente (per keyword?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "generale repository packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "generale repository packages.db.keywords" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "license.mask lato utente" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "live unmask lato utente" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "live mask lato utente" @@ -3116,87 +3119,87 @@ msgstr "live mask lato utente" msgid "Entropy needs your attention" msgstr "Entropy richiede la tua attenzione" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy ha una domanda per te" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interrotto" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Numero selezionato" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Per favore seleziona un'opzione" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Scarta tutto" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Conferma" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Aggiungi elemento" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Modifica elemento" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Rimuovi elemento" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "VIsualizza lista corrente" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "La tua scelta (scrivi un numero e premi Invio):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Non hai scritto un numero." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Azione non valida" -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "Stringa da aggiungere (-1 per tornare indietro):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Stringa non valida" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Numero elemento da rimuovere (-1 per tornare indietro):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "vecchio" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "nuovo valore:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Elemento non valido." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Numero elemento da rimuovere (-1 per tornare indietro):" @@ -3361,16 +3364,18 @@ msgstr "Identificatore GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titolo" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3499,7 +3504,6 @@ msgstr "Non sei" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Parametri errati" @@ -3549,7 +3553,7 @@ msgid "Error while creating package for" msgstr "Errore durante la creazione del pacchetto per" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Impossibile continuare" @@ -3677,7 +3681,7 @@ msgstr "repository non disponibile" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Keyword" @@ -3689,7 +3693,7 @@ msgstr "Keyword" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Trovati" @@ -3700,7 +3704,6 @@ msgstr "Trovati" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "voci" @@ -3730,8 +3733,8 @@ msgstr "" "pacchetti già inclusi come dipendenze in livelli più alti (circolarità)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3878,8 +3881,9 @@ msgstr "Ricerca Rimozione" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Nessun pacchetto trovato" @@ -3939,7 +3943,7 @@ msgstr "Ricerca Slot" msgid "Package Set Search" msgstr "Ricerca Package Set" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Ricerca Tag" @@ -4016,7 +4020,7 @@ msgstr "Download" msgid "Checksum" msgstr "Firma" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dipendenze" @@ -4134,7 +4138,7 @@ msgid "repository already enabled" msgstr "repository già abilitata" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "repository non disponibile" @@ -4208,7 +4212,7 @@ msgstr "attiva" msgid "never synced" msgstr "mai sincronizzato" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Stato" @@ -4260,24 +4264,25 @@ msgstr "Nessuna repository specificata in" msgid "Unhandled exception" msgstr "Eccezione non gestita" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Notice board non disponibile" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Contenuto" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Link" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Premere Invio per continuare" @@ -4287,7 +4292,8 @@ msgstr "Premere Invio per continuare" msgid "Exit" msgstr "Esci" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Sceglierne uno digitando l'identificatore" @@ -4297,7 +4303,7 @@ msgid "Notice board" msgstr "Notice board" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Non sei root" @@ -4319,8 +4325,7 @@ msgid "Type a number." msgstr "Scrivi un numero." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "File di configurazione" @@ -4441,7 +4446,7 @@ msgid "Unique files that would be automerged" msgstr "File univoci che vorrebbero essere incorporati automaticamente" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Repository non valida" @@ -4459,7 +4464,7 @@ msgstr "Già loccato come" msgid "Please logout first" msgstr "Eseguire il logout prima" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4467,7 +4472,7 @@ msgstr "Eseguire il logout prima" msgid "Username" msgstr "Nome utente" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4475,7 +4480,7 @@ msgstr "Nome utente" msgid "Password" msgstr "Password" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4487,7 +4492,7 @@ msgstr "Eseguire login su" msgid "Login aborted. Not logged in." msgstr "Errore login. Non loggato." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4705,7 +4710,7 @@ msgid "Installed packages database not available" msgstr "Database dei pacchetti installati non disponibile" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "è deprecato, usare" @@ -4721,15 +4726,15 @@ msgstr "Database di Sistema pulito" msgid "No System Databases found" msgstr "Nessun Database di Sistema trovato" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Nessun backup del database trovato" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Seleziona il database che vuoi ripristinare" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "strumento di ripristino del database dei pacchetti installati Entropy" @@ -5018,28 +5023,23 @@ msgstr "Ok mi arrendo, sei senza speranza" msgid "Go to hell." msgstr "Vai al diavolo." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Opzioni di Base" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "questo output" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "stampa versione" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "disabilita output colorato" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "disabilita output colorato" @@ -5048,8 +5048,7 @@ msgstr "disabilita output colorato" msgid "print a bash completion script to stdout" msgstr "stampa script bash completion su stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Opzioni Applicazione" @@ -5102,7 +5101,7 @@ msgstr "lettore notice board repository" msgid "show respositories status" msgstr "visualizza stato repository" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "cerca pacchetti nelle repository" @@ -5141,8 +5140,7 @@ msgstr "aggiorna il sistema con gli ultimi pacchetti disponibili" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "chiedi prima di apportare qualsiasi modifica" @@ -5150,8 +5148,7 @@ msgstr "chiedi prima di apportare qualsiasi modifica" msgid "just download packages" msgstr "scarica solamente i pacchetti" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "visualizza solo quello che dovrebbe essere fatto" @@ -5337,7 +5334,7 @@ msgstr "smaschera uno o più pacchetti" msgid "configure one or more installed packages" msgstr "configura uno o più pacchetti installati" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "cerca dipendenze non soddisfatte" @@ -5353,7 +5350,7 @@ msgstr "ordina i pacchetti per dimensione su disco" msgid "look for missing libraries" msgstr "cerca librerie mancanti" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "riversa risultati nei file" @@ -5381,7 +5378,7 @@ msgstr "esegue varie ricerche su repository e database locale" msgid "search from what package a file belongs" msgstr "cerca da quale pacchetto un file dipende" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "visualizza changelog pacchetti" @@ -5389,13 +5386,11 @@ msgstr "visualizza changelog pacchetti" msgid "search what packages depend on the provided atoms" msgstr "cerca quali pacchetti dipendono dagli atomi forniti" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "cerca pacchetti per descrizione" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "visualizza file posseduti dagli atomi forniti" @@ -5436,8 +5431,7 @@ msgstr "cerca fra i pacchetti installati" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "visualizza librerie runtime richieste dagli atomi forniti" @@ -5453,8 +5447,7 @@ msgstr "visualizza l'albero di rimozione per gli atomi specificati" msgid "show atoms needing the provided libraries" msgstr "visualizza atomi che richiedono le librerie fornite" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "cerca package set disponibili" @@ -5466,29 +5459,26 @@ msgstr "visualizza i pacchetti possedenti gli slot forniti" msgid "show packages owning the provided tags" msgstr "visualizza i pacchetti possedenti le tag fornite" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" "visualizza albero delle dipendenze dirette per gli atomi installabili passati" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "include pacchetti di sistema, dipendenze di compilazione ed informazioni " "sulla circolarità" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "visualizza albero dipendenze inverse per gli atomi installati forniti" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "visualizza più dettagli" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "stampa risultati in un modo scriptabile" @@ -5572,7 +5562,7 @@ msgstr "" "genera database dei pacchetti installati usando i file sul sistema [ultima " "speranza]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "rigenera mappa UID SPM (pacchetti SPM <-> Entropy)" @@ -5590,353 +5580,22 @@ msgid "restore a previously backed up Entropy installed packages database" msgstr "ripristina un backup del database dei pacchetti installati Entropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "gestisce le funzionalità lato Community" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "funzioni di gestione delle community repository" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "scansiona il sistema alla ricerca di nuovi pacchetti compilati" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analizza la cartella di storage di Entropy direttamente" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "ripacchettizza gli atomi specificati" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "non chiedere nulla eccetto cose critiche" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "gestisce solo gli atomi specificati" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "esegue in modalità interattiva (chiedendo le cose una alla volta)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"aggiunge pacchetti binari alla repository senza affliggere gli \"scope" -"\" (multipacchetto)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "funzioni di gestione mirror delle community repository" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "sincronizza i pacchetti, il database e fa anche un po' di pulizia" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "sincronizza tutte le repository configurate" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "sincronizza i pacchetti sui mirror primari" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "verifica inoltre l'integrità dei pacchetti" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "sincronizza il database della repository corrente sui mirror primari" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "blocca il database della repository corrente (lato server)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "sblocca il database della repository corrente (lato server)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "blocca il database della repository corrente (lato client)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "sblocca il database della repository corrente (lato client)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "visualizza lo stato corrente dei blocchi" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "rimuove pacchetti binary non più nella repository e scaduti" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Calcolo pacchetti disponibili per" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "gestisce una repository" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(re)inizializza il database della repository corrente" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "non riempire nuovamente il database usando i pacchetti sui mirror" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(ri)crea il database per la repository specificata" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" -"forza manualmente un balzo di revisione per il database della repository " -"corrente" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "sincronizza il database" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "ingloba pacchetti appartenenti a vecchie branch in quella corrente" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "rimuove gli atomi forniti dal database della repository corrente" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"rimuove gli atomi \"iniettati\" forniti (tutti se nessun atomo è specificato)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "crea un database di repository nuovo nel percorso fornito" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "passa alla branch specificata gli atomi forniti (o world)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "verifica l'integrità remota degli atomi forniti (o world)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "backup database repository corrente" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "ripristina un database backuppato precedentemente" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "abilita la repository specificata" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "disabilita la repository specificata" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "visualizza lo stato corrente dell'Interfaccia Server" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Repository applicazioni installate" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "gestisce dipendenze pacchetto" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"clona un pacchetto all'interno di una repository assegnandogli una tag " -"arbitraria" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "muove i pacchetti da una repository all'altra" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "include dipendenze" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copia pacchetti da una repository all'altra" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "imposta la repository corrente (predefinita)" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "gestisce le firme digitali delle repository (OpenGPG)" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "crea coppia chiavi per le repository e firma pacchetti" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "elimina coppia di chiavi (e firme digitali) della repository" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"visualizza informazioni sulle chiavi correntemente configurate per le " -"repository fornite" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"firma (o firma di nuovo) i pacchetti nella repository usando la coppia di " -"chiavi impostata" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importa coppia chiavi, collega alla repository fornita" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exporta chiave pubblica della repository fornita" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "exporta chiave privata della repository fornita" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "esegue ricerche all'interno dei database delle community repository" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "visualizza da quali pacchetti i file forniti appartengono" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "visualizza quali pacchetti dipendono dagli atomi forniti" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "elenca tutti i pacchetti nella repository predefinita (corrente)" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "cerca pacchetti all'interno della database della repository corrente" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "visualizza pacchetti possedenti le tag specificate" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "visualizza pacchetti possedenti le revisioni specificate" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "funzioni del gestore dei pacchetti sorgente" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "funzione di compilazione" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compila i pacchetti appartenenti alle categorie fornite" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "elenca solamente i pacchetti" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "non considerare slot di pacchetti vecchi" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "compila pacchetti contenuti nei package sets specificati" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "ricompila tutto" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "esegue aggiornamento database se tutto è andato a buon fine" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "esegue sync mirror se tutto è andato a buon fine" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "scansiona pacchetti SPM orfani" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "funzioni di gestione notice board" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "aggiunge una notizia alla notice board" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "rimuove una notizia dalla notice board" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "leggi la notice board corrente" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "cerca dipendenze non soddisfatte attraverso le repository community" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "verifica l'integrità dei pacchetti locali" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "gestisce le funzioni di Contenuti Generati dagli Utenti" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "login su repository specificata" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "logout su repository specificata" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forza azione" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5944,80 +5603,72 @@ msgstr "" "gestione documenti del pacchetto per la repository selezionata (commenti, " "file, video)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "ottiene i documenti disponibili per la chiave pacchetto specificata " "(esempio: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "aggiunge un nuovo documento alla chiave pacchetto specificata (esempio: x11-" "libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "rimuove documenti dal database usando i loro identificatori" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "gestisce votazione pacchetti per la repository selezionata" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" "ottiene la votazione per la chiave pacchetto specificata (esempio: x11-libs/" "qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" "aggiunge una votazione alla chiave pacchetto specificata (esempio: x11-libs/" "qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "gestisce la cache di Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "pulisce la cache Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "rimuove i pacchetti scaricati e pulisce le directory temporanee" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "visualizza informazioni di sistema" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Devi installare sys-apps/entropy-server. :-) Fallo !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "Devi installare/aggiornare sys-apps/entropy-server. :-) Fallo!" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "parametri insufficienti" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "Repository dei pacchetti installati corrotta. Provare a rigenerarla" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "Il disco è pieno, colpa tua!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "Memoria esaurita! Colpa tua!" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -6025,23 +5676,23 @@ msgstr "" "Ciao. Sono Mr. Bug Reporter. Mi dispiace di informarti che Equo è andato in " "crash. Beh, conosci la sfiga..." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Ma c'è qualcosa che potresti fare per aiutare Equo ad essere una " "applicazione migliore." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "-- SEBBENE NON VOGLIA LEGGERMI LO STESSO RAPPORTO MILLE MILA VOLTE --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Ora ti mostro quel che è successo. Non preoccuparti, sono qui per aiutarti." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -6049,11 +5700,11 @@ msgstr "" "Ah beh, non posso nemmeno scrivere su /tmp. Per favore, copia l'errore ed " "invialo a lxnay@sabayon.org" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Naturalmente sei connesso ad Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -6063,11 +5714,11 @@ msgstr "" "riguardo il tuo hardware ai miei creatori in modo che possano ripararmi? (Il " "tuo IP verrà loggato)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ok, ok ok ok... Scusa!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -6075,19 +5726,19 @@ msgstr "" "Se vuoi essere contattato (e supportato attivamente), rispondi anche alle " "domande sotto:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Il tuo Nome completo:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "La tua E-Mail:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Cosa stavi facendo:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6095,7 +5746,7 @@ msgstr "" "Grazie mille. L'errore è stato riportato e, sperando bene, il problema sarà " "risolto il prima possibile." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6104,11 +5755,11 @@ msgstr "" "Argh. Impossibile inviare il rapporto. Ho salvato l'errore in /tmp/equoerror." "txt. Quando vuoi, invialo a lxnay@sabayon.org" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Versioni di Entropy ed Equo non combacianti" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "potrebbe far esplodere il tuo sistema!" @@ -6117,7 +5768,6 @@ msgstr "potrebbe far esplodere il tuo sistema!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Niente da fare" @@ -6260,10 +5910,7 @@ msgstr "è danneggiato" msgid "atom" msgstr "atomo" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "in" @@ -6289,6 +5936,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Questi sono i pacchetti che vorrebbero essere rimossi" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Questi sono i pacchetti che vorrebbero essere rimossi" @@ -6519,7 +6167,7 @@ msgstr "Installazione completata" msgid "These are the packages that would be masked" msgstr "Questi sono i pacchetti che vorrebbero essere mascherati" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Vuoi continuare ?" @@ -6555,8 +6203,7 @@ msgstr "Rimozione vietata" msgid "Would you like to calculate dependencies ?" msgstr "Vuoi continuare con il calcolo delle dipendenze ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Vuoi rimuoverli ora ?" @@ -6606,7 +6253,10 @@ msgstr "10 secondi" msgid "Libraries/Executables statistics" msgstr "Statistiche Librerie/Eseguibili" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Non accoppiato" @@ -6614,744 +6264,1038 @@ msgstr "Non accoppiato" msgid "Would you like to install them ?" msgstr "Vuoi installarli ?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "visualizza stato corrente repository" +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "esegui ricerce nei database delle repository" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" -msgstr "cerca pacchetti all'interno della repository di default" - -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(re)inizializza il database della repository corrente" +msgid "available tests" +msgstr "disponibile" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" -msgstr "non includere dipendenze inverse" - -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "sposta la repository alla branch specificata" - -#: ../../server/reagent.py:81 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "verifica l'integrità remota degli atomi forniti (o world)" +msgid "dependencies test" +msgstr "Test dipendenze" -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "clona un pacchetto assegnandogli una tag arbitraria" - -#: ../../server/reagent.py:89 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "mask given package in given repository" -msgstr "utilizzo Pacchetto in repository" +msgid "libraries test" +msgstr "Test librerie" -#: ../../server/reagent.py:90 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "unmask given packages in given repository" -msgstr "utilizzo Pacchetto in repository" +msgid "dump results to file" +msgstr "riversa risultati nei file" -#: ../../server/reagent.py:116 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "scansiona pacchetti SPM orfani" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" -msgstr "scansiona pacchetti SPM orfani" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" +msgid "library linking test (using repository metadata)" msgstr "cerca librerie mancanti" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "cerca librerie mancanti" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "rimuove i pacchetti scaricati e pulisce le cartelle temporanee" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "Inizio sincronizzazione sui mirror (pacchetti/database)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Interruzione !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Per favore inserisci un messaggio di commit" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Dovrei continuare con la procedura di pulizia ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Esci/Salva" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Testo notizia" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL di rilievo (opzionale)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Notice board della repository, inserimento nuovo elemento" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Scegli quello che vuoi rimuovere" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Sei sicuro di voler rimuovere questo?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Inizio blocco database dei mirror" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "E' occorso un problema su almeno un mirror" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Ripristino completo" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Inizio sblocco database dei mirror" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Ripristino completo" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Inizio blocco database dei mirror in download" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Blocco database in download completato" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Inizio sblocco database dei mirror in download" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Sblocco database in download completato" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "DATABASE" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "DOWNLOAD" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "nelle repository" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Errori sincronizzazione database, impossibile continuare." - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Calcolo pacchetti disponibili per" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Stato dei database delle repository Entropy remote" +msgid "package names" +msgstr "Atomi" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Host" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Revisione" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Revisione del database locale correntemente a" +msgid "verify local packages integrity" +msgstr "verifica inoltre l'integrità dei pacchetti" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "sceglie su quale branch operare" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "funzioni di gestione repository pacchetti" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "sincronizza le repository pacchetti sui mirror primari" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "funzioni di gestione repository" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "Interfaccia GPG caricata, directory home" - -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "Importing keypair for repository" -msgstr "Installazione chiave GPG per repository" +msgid "verify remote packages integrity" +msgstr "verifica inoltre l'integrità dei pacchetti" -#: ../../server/server_key.py:125 -#, fuzzy -msgid "Another keypair already exists for repository" -msgstr "elimina coppia di chiavi (e firme digitali) della repository" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Dovresti installarli il prima possibile" +msgid "execute query" +msgstr "Esegui copia" -#: ../../server/server_key.py:155 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Exporting private key for repository" -msgstr "exporta chiave privata della repository fornita" +msgid "available queries" +msgstr "disponibile" -#: ../../server/server_key.py:159 +#: ../../server/eit/commands/query.py:59 #, fuzzy -msgid "Exporting public key for repository" -msgstr "exporta chiave pubblica della repository fornita" +msgid "search package tags" +msgstr "package.mask lato utente" -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "importa coppia chiavi, collega alla repository fornita" - -#: ../../server/server_key.py:172 -#, fuzzy -msgid "Keypair is EXPIRED for repository" -msgstr "Chiave GPG SCADUTA per repository" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Installazione chiave GPG per repository" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Installazione chiave GPG per repository" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Installazione chiave GPG per repository" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "è entrato nella repository" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Inserisci URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Informazioni repository" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" -"Accertati di generare una chiave di revoca e memorizzarla in un posto sicuro." - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "Potresti voler inviare le chiavi ad un server chiavi (key server)" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "Installazione chiave GPG per repository" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "abilita la repository specificata" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "Sei pronto ?" +msgid "tag name" +msgstr "Nome host" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "Chiavi non disponibili per" +msgid "show libraries (.so) required by matched packages" +msgstr "Questi sono i pacchetti accoppiati" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "visualizza albero dipendenze inverse per gli atomi installati forniti" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "Firma pacchetti con chiave GPG per la repository" +msgid "include build dependencies" +msgstr "non includere dipendenze inverse" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Identificatori pacchetto" +msgid "search through package sets" +msgstr "cerca package set disponibili" -#: ../../server/server_key.py:376 -#, fuzzy -msgid "Public key fingerprint" -msgstr "Fingerprint" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Dimensione chiave" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Data di creazione" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Scade il" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "nessun pacchetto specificato." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Abilitazione" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Abilitato" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "già abilitato" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Disattivazione" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Disabilitato" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "già disabilitato" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -#, fuzzy -msgid "Invalid syntax." -msgstr "Stringa non valida" - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -#, fuzzy -msgid "No valid repository specified." -msgstr "Nessuna repository valida specificata." - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Impossibile risolvere" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -#, fuzzy -msgid "No packages selected." -msgstr "Nessun pacchetto selezionato" - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dipendenze pacchetto" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "No dipendenze" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Tipo dipendenza" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Seleziona un tipo dipendenza per" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Editor dipendenze" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Confermi ?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "dipendenze aggiornate con successo" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Mascheramento Pacchetti" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Scompattamento" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Risoluzione pacchetti da rimuovere" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Parametri insufficienti" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Questi sono i pacchetti che vorrebbero essere rimossi dal database" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Rimozione dei pacchetti selezionati" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Pacchetti rimossi. Per rimuovere i pacchetti binari, lancia activator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Ricerca dei pacchetti \"iniettati\" da rimuovere" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Questi sono i pacchetti \"iniettati\" collezionati per la rimozione" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Cambio branch, assicurati di avere i tuoi pacchetti sincronizzati" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Collezione pacchetti che vorrebbero essere marcati" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Questi sono i pacchetti che vorrebbero essere marcati" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Nessuna repository valida specificata." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Nessuna repository valida specificata." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Repository Entropy inizializzata" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Creazione database vuoto in" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Impossibile sovrascrivere il file già esistente" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Balzo del database della repository" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Nessun pacchetto valida da ripacchettizzare" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Scansione differenziale del database" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Atomo non valido" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Da far miga!" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -"Questi sono i pacchetti il quale stato vorrebe essere cambiato in \"iniettato" -"\"" -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Vuoi trasformarli ora ?" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nome Package Set" -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Trasformazione dal database" +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "cerca pacchetti per descrizione" -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Trasformazione database completata" +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informazioni repository" -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "scaduto" +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Descrizione pacchetto" -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Quindi, che pacchi vuoi rimuovere ?" +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Trovato un fico secco" -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Rimuovere questo pacchetto?" +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "librerie" -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Quindi, che pacchi vuoi aggiungere ?" +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" +msgstr "" -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Aggiungere questo pacchetto?" +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "utente non trovato" -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "Questi sono i pacchetti che vorrebbero essere installati/aggiornati" +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Nessun pacchetto trovato" -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "attenzione" +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "forzatura aggiornamento metadati pacchetti" -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Vuoi pacchettizzarli ora ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "dentro" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Compressione pacchetti" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Ignoramento delle voci Spm danneggiate, per favore ricompilalo" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Niente da fare. Controlla più tardi." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Voci gestite" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "revisione locale" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "pacchetti immagazzinati" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "pacchetti scaricati" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "pacchetti firmati" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "Da aggiungere" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "migrazione" -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Questi sono i pacchetti che verrebbero installati" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Nessun package set trovato" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "package set non trovato" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Trovato un fico secco" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "visualizza stato repository" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "pacchetti corrotti" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "elenca pacchetti installati" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "non disponibile" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "nessun pacchetto" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "cerca pacchetti nelle repository" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "cerca pacchetti nelle repository" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Repository Entropy inizializzata" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Repository corrente" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Repository di destinazione" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dipendenze pacchetto" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "muove i pacchetti da una repository all'altra" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nome Package Set" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Trovato un fico secco" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "non è elencato nella repository !" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "errore socket" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Revisione repository" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "visualizza stato repository" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "muove i pacchetti da una repository all'altra" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "questo output" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "rimuove repository" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Salto repository" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Revisione repository" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Aggiorna Repository" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Scegli la repository" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Messaggio di commit" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Per favore inserisci un messaggio di commit" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Stato dei database delle repository Entropy remote" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Host" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Da remoto" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "locale" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Interruzione !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +#, fuzzy +msgid "push (or pull) repository packages and metadata" +msgstr "repository cambiata. Aggiornamento metadati" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Genera informazioni login" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Visualizza applicazioni disponibili" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Aggiungi un elemento notice board" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Rimuovi elemento della notice board" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Notice board" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Inserisci URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Scegli quello che vuoi rimuovere" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Sei sicuro di voler rimuovere questo?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Esci/Salva" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Ottieni Notice Board repository" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "path repository" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Salto repository" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "abilita la repository specificata" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Repository applicazioni installate" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Rimozione dei pacchetti selezionati" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Impossibile risolvere" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Nessun pacchetto valida da ripacchettizzare" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Scansione differenziale del database" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Backend non valido" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Da far miga!" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "è stato iniettato" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Trasformazione dal database" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Trasformazione database completata" +msgid "Action completed" +msgstr "iniezione completata" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "scaduto" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Quindi, che pacchi vuoi rimuovere ?" +msgid "Select packages for removal" +msgstr "Ricerca dei pacchetti \"iniettati\" da rimuovere" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Rimuovere questo pacchetto?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Match da rimuovere dal database repository" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Quindi, che pacchi vuoi aggiungere ?" +msgid "Select packages to add" +msgstr "Alcuni pacchetti sono mascherati" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Aggiungere questo pacchetto?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Vorrebbero essere aggiunti al database di sistema" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "attenzione" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Vuoi pacchettizzarli ora ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "dentro" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Compressione pacchetti" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Ignoramento delle voci Spm danneggiate, per favore ricompilalo" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Niente da fare. Controlla più tardi." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Voci gestite" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Repository applicazioni installate" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "non è disponibile" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Salto repository" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "risolvi un pacchetto nelle repository" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "abilita la repository specificata" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Scaricamento database repository" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "visualizza lo stato corrente dei blocchi" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Tabella stato dei mirror" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Server" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "A repository" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "Su repository" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"include pacchetti di sistema, dipendenze di compilazione ed informazioni " +"sulla circolarità" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "visualizza albero dipendenze inverse per gli atomi installati forniti" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Calcolo pacchetti disponibili per" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Calcolo pacchetti disponibili per" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Tutte le repository erano già aggiornate." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Calcolo pacchetti disponibili per" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "file non trovato" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "visualizza file posseduti dagli atomi forniti" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "abilita la repository specificata" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "non includere dipendenze inverse" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "muove i pacchetti da una repository all'altra" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dipendenze pacchetto" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "No dipendenze" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Tipo dipendenza" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Seleziona un tipo dipendenza per" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Editor dipendenze" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Confermi ?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "dipendenze aggiornate con successo" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Repository applicazioni installate" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dipendenze pacchetto" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configurazione pacchetto" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copia pacchetti da una repository all'altra" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Spacchettizzazione del pacchetto dipendenza" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forza azione" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "crea coppia chiavi per le repository e firma pacchetti" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "elimina coppia di chiavi (e firme digitali) della repository" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "importa coppia chiavi, collega alla repository fornita" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"firma (o firma di nuovo) i pacchetti nella repository usando la coppia di " +"chiavi impostata" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importa coppia chiavi, collega alla repository fornita" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Fingerprint" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "database remoto improvvisamente bloccato" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "Interfaccia GPG caricata, directory home" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Installazione chiave GPG per repository" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "è entrato nella repository" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Inserisci URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Informazioni repository" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Dovresti installarli il prima possibile" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Accertati di generare una chiave di revoca e memorizzarla in un posto sicuro." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "Potresti voler inviare le chiavi ad un server chiavi (key server)" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Installazione chiave GPG per repository" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "abilita la repository specificata" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Sei pronto ?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "Chiavi non disponibili per" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "Firma pacchetti con chiave GPG per la repository" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Identificatori pacchetto" + +#: ../../server/eit/commands/key.py:326 +#, fuzzy +msgid "Public key fingerprint" +msgstr "Fingerprint" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Dimensione chiave" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Data di creazione" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Scade il" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Installazione chiave GPG per repository" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "elimina coppia di chiavi (e firme digitali) della repository" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Dovresti installarli il prima possibile" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "exporta chiave privata della repository fornita" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "exporta chiave pubblica della repository fornita" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "importa coppia chiavi, collega alla repository fornita" + +#: ../../server/eit/commands/key.py:453 +#, fuzzy +msgid "Keypair is EXPIRED for repository" +msgstr "Chiave GPG SCADUTA per repository" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Installazione chiave GPG per repository" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Installazione chiave GPG per repository" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "gestisce una repository" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Atomi" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Impossibile preparare la directory della cache" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "branch supportate" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Backend non valido" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "cerca pacchetti nelle repository" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Impossibile passare alla branch" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branch" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Atomo non valido" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "gestisce una repository" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Repository corrente" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7408,116 +7352,122 @@ msgstr "Ci sono package set incompleti, continua a tuo rischio" msgid "Application" msgstr "Applicazione" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Login effettuato con successo come" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "branch supportate" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Voto registrato con successo" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Errore durante la registrazione del voto" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Già rimosso" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Applicazioni" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Applicazioni da rimuovere" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Applicazioni da retrocedere" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Applicazioni da installare" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Applicazioni da aggiornare" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Applicazioni da reinstallare" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proposto" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destinazione" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Id. Sicurezza" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Nome applicazione" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Attendere prego, caricamento..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Gli avvisi sono in fase di caricamento" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Nessun avviso" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Nessun elemento da visualizzare" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nome file" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "impossibile disabilitare la repository di default" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Attivo" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Aggiorna" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Revisione" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identificatore Repository" @@ -7939,6 +7889,10 @@ msgstr "Alcuni pacchetti sono mascherati" msgid "Masked package" msgstr "Pacchetto mascherato" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Abilitato" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Per favore conferma le azioni di cui sopra" @@ -10006,12 +9960,481 @@ msgstr "Magneto Notifier" msgid "_Load Package Manager" msgstr "_Lancia il Gestore dei pacchetti" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "Interfaccia Entropy Server deve essere avviata da root" +#~ msgid "handles community-side features" +#~ msgstr "gestisce le funzionalità lato Community" + +#~ msgid "community repositories management functions" +#~ msgstr "funzioni di gestione delle community repository" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "scansiona il sistema alla ricerca di nuovi pacchetti compilati" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analizza la cartella di storage di Entropy direttamente" + +#~ msgid "repackage the specified atoms" +#~ msgstr "ripacchettizza gli atomi specificati" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "non chiedere nulla eccetto cose critiche" + +#~ msgid "manage only the specified atoms" +#~ msgstr "gestisce solo gli atomi specificati" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "esegue in modalità interattiva (chiedendo le cose una alla volta)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "aggiunge pacchetti binari alla repository senza affliggere gli \"scope" +#~ "\" (multipacchetto)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "funzioni di gestione mirror delle community repository" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "sincronizza i pacchetti, il database e fa anche un po' di pulizia" + +#~ msgid "sync all the configured repositories" +#~ msgstr "sincronizza tutte le repository configurate" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "sincronizza i pacchetti sui mirror primari" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "sincronizza il database della repository corrente sui mirror primari" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "blocca il database della repository corrente (lato server)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "sblocca il database della repository corrente (lato server)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "blocca il database della repository corrente (lato client)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "sblocca il database della repository corrente (lato client)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "rimuove pacchetti binary non più nella repository e scaduti" #, fuzzy -#~ msgid "reset error" -#~ msgstr "errore socket" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Calcolo pacchetti disponibili per" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(re)inizializza il database della repository corrente" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "non riempire nuovamente il database usando i pacchetti sui mirror" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(ri)crea il database per la repository specificata" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "forza manualmente un balzo di revisione per il database della repository " +#~ "corrente" + +#~ msgid "synchronize the database" +#~ msgstr "sincronizza il database" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "ingloba pacchetti appartenenti a vecchie branch in quella corrente" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "rimuove gli atomi forniti dal database della repository corrente" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "rimuove gli atomi \"iniettati\" forniti (tutti se nessun atomo è " +#~ "specificato)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "crea un database di repository nuovo nel percorso fornito" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "passa alla branch specificata gli atomi forniti (o world)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "verifica l'integrità remota degli atomi forniti (o world)" + +#~ msgid "backup current repository database" +#~ msgstr "backup database repository corrente" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "ripristina un database backuppato precedentemente" + +#~ msgid "enable the specified repository" +#~ msgstr "abilita la repository specificata" + +#~ msgid "disable the specified repository" +#~ msgstr "disabilita la repository specificata" + +#~ msgid "show the current Server Interface status" +#~ msgstr "visualizza lo stato corrente dell'Interfaccia Server" + +#, fuzzy +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "Repository applicazioni installate" + +#~ msgid "handle packages dependencies" +#~ msgstr "gestisce dipendenze pacchetto" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "clona un pacchetto all'interno di una repository assegnandogli una tag " +#~ "arbitraria" + +#~ msgid "pulls dependencies in" +#~ msgstr "include dipendenze" + +#~ msgid "set the default repository" +#~ msgstr "imposta la repository corrente (predefinita)" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "gestisce le firme digitali delle repository (OpenGPG)" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "visualizza informazioni sulle chiavi correntemente configurate per le " +#~ "repository fornite" + +#~ msgid "export public key of given repository" +#~ msgstr "exporta chiave pubblica della repository fornita" + +#~ msgid "export private key of given repository" +#~ msgstr "exporta chiave privata della repository fornita" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "esegue ricerche all'interno dei database delle community repository" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "visualizza da quali pacchetti i file forniti appartengono" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "visualizza quali pacchetti dipendono dagli atomi forniti" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "elenca tutti i pacchetti nella repository predefinita (corrente)" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "" +#~ "cerca pacchetti all'interno della database della repository corrente" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "visualizza pacchetti possedenti le tag specificate" + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "visualizza pacchetti possedenti le revisioni specificate" + +#~ msgid "source package manager functions" +#~ msgstr "funzioni del gestore dei pacchetti sorgente" + +#~ msgid "compilation function" +#~ msgstr "funzione di compilazione" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compila i pacchetti appartenenti alle categorie fornite" + +#~ msgid "just list packages" +#~ msgstr "elenca solamente i pacchetti" + +#~ msgid "do not pull old package slots" +#~ msgstr "non considerare slot di pacchetti vecchi" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "compila pacchetti contenuti nei package sets specificati" + +#~ msgid "rebuild everything" +#~ msgstr "ricompila tutto" + +#~ msgid "run database update if all went fine" +#~ msgstr "esegue aggiornamento database se tutto è andato a buon fine" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "esegue sync mirror se tutto è andato a buon fine" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "scansiona pacchetti SPM orfani" + +#~ msgid "notice board handling functions" +#~ msgstr "funzioni di gestione notice board" + +#~ msgid "add a news item to the notice board" +#~ msgstr "aggiunge una notizia alla notice board" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "rimuove una notizia dalla notice board" + +#~ msgid "read the current notice board" +#~ msgstr "leggi la notice board corrente" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "cerca dipendenze non soddisfatte attraverso le repository community" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "verifica l'integrità dei pacchetti locali" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Devi installare sys-apps/entropy-server. :-) Fallo !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Devi installare/aggiornare sys-apps/entropy-server. :-) Fallo!" + +#~ msgid "show current repositories status" +#~ msgstr "visualizza stato corrente repository" + +#~ msgid "do some searches into repository databases" +#~ msgstr "esegui ricerce nei database delle repository" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "cerca pacchetti all'interno della repository di default" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(re)inizializza il database della repository corrente" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "sposta la repository alla branch specificata" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verifica l'integrità remota degli atomi forniti (o world)" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "clona un pacchetto assegnandogli una tag arbitraria" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "utilizzo Pacchetto in repository" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "utilizzo Pacchetto in repository" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "scansiona pacchetti SPM orfani" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "scansiona pacchetti SPM orfani" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "cerca librerie mancanti" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "rimuove i pacchetti scaricati e pulisce le cartelle temporanee" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "Inizio sincronizzazione sui mirror (pacchetti/database)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Dovrei continuare con la procedura di pulizia ?" + +#~ msgid "Notice text" +#~ msgstr "Testo notizia" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL di rilievo (opzionale)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Notice board della repository, inserimento nuovo elemento" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Inizio blocco database dei mirror" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "E' occorso un problema su almeno un mirror" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Ripristino completo" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Inizio sblocco database dei mirror" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Ripristino completo" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Inizio blocco database dei mirror in download" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Blocco database in download completato" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "Inizio sblocco database dei mirror in download" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Sblocco database in download completato" + +#~ msgid "DATABASE" +#~ msgstr "DATABASE" + +#~ msgid "DOWNLOAD" +#~ msgstr "DOWNLOAD" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "nelle repository" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Errori sincronizzazione database, impossibile continuare." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Revisione del database locale correntemente a" + +#~ msgid "choose on what branch operating" +#~ msgstr "sceglie su quale branch operare" + +#~ msgid "package repositories handling functions" +#~ msgstr "funzioni di gestione repository pacchetti" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "sincronizza le repository pacchetti sui mirror primari" + +#~ msgid "repository handling functions" +#~ msgstr "funzioni di gestione repository" + +#~ msgid "no package specified." +#~ msgstr "nessun pacchetto specificato." + +#~ msgid "Enabling" +#~ msgstr "Abilitazione" + +#~ msgid "already enabled" +#~ msgstr "già abilitato" + +#~ msgid "Disabling" +#~ msgstr "Disattivazione" + +#~ msgid "Disabled" +#~ msgstr "Disabilitato" + +#~ msgid "already disabled" +#~ msgstr "già disabilitato" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Stringa non valida" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Nessuna repository valida specificata." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Nessun pacchetto selezionato" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Mascheramento Pacchetti" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Scompattamento" + +#~ msgid "Matching packages to remove" +#~ msgstr "Risoluzione pacchetti da rimuovere" + +#~ msgid "Not enough parameters" +#~ msgstr "Parametri insufficienti" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Questi sono i pacchetti che vorrebbero essere rimossi dal database" + +#~ msgid "Removing selected packages" +#~ msgstr "Rimozione dei pacchetti selezionati" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Pacchetti rimossi. Per rimuovere i pacchetti binari, lancia activator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Questi sono i pacchetti \"iniettati\" collezionati per la rimozione" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "Cambio branch, assicurati di avere i tuoi pacchetti sincronizzati" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Collezione pacchetti che vorrebbero essere marcati" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Questi sono i pacchetti che vorrebbero essere marcati" + +#~ msgid "No valid repositories specified." +#~ msgstr "Nessuna repository valida specificata." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Nessuna repository valida specificata." + +#~ msgid "Creating empty database to" +#~ msgstr "Creazione database vuoto in" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Impossibile sovrascrivere il file già esistente" + +#~ msgid "Bumping Repository database" +#~ msgstr "Balzo del database della repository" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "" +#~ "Questi sono i pacchetti il quale stato vorrebe essere cambiato in " +#~ "\"iniettato\"" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Vuoi trasformarli ora ?" + +#~ msgid "Transforming from database" +#~ msgstr "Trasformazione dal database" + +#~ msgid "Database transform complete" +#~ msgstr "Trasformazione database completata" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Quindi, che pacchi vuoi rimuovere ?" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Quindi, che pacchi vuoi aggiungere ?" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Questi sono i pacchetti che vorrebbero essere installati/aggiornati" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Questi sono i pacchetti che verrebbero installati" + +#~ msgid "No package sets found" +#~ msgstr "Nessun package set trovato" + +#~ msgid "package set not found" +#~ msgstr "package set non trovato" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Trasformazione database completata" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Quindi, che pacchi vuoi rimuovere ?" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Quindi, che pacchi vuoi aggiungere ?" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Interfaccia Entropy Server deve essere avviata da root" #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Impossibile acquisire priorità risorse Entropy." @@ -10182,9 +10605,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "empty username" #~ msgstr "username vuoto" -#~ msgid "user not found" -#~ msgstr "utente non trovato" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "devi loggarti sul sito web per aggiornare il formato della tua password" @@ -10262,10 +10682,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "EAPI3 Service status" #~ msgstr "Stato servizio EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "database remoto improvvisamente bloccato" - #~ msgid "EAPI3 Service" #~ msgstr "Servizio EAPI3" @@ -10626,9 +11042,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "From repository" #~ msgstr "Da repository" -#~ msgid "To repository" -#~ msgstr "A repository" - #~ msgid "Copy instead of move?" #~ msgstr "Copia invece che spostamento?" @@ -10680,18 +11093,9 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Check mode" #~ msgstr "Modalità controllo" -#~ msgid "Get repository notice board" -#~ msgstr "Ottieni Notice Board repository" - -#~ msgid "Remove notice board entry" -#~ msgstr "Rimuovi elemento della notice board" - #~ msgid "Entry Identifiers" #~ msgstr "Identificatore Elementi" -#~ msgid "Add notice board entry" -#~ msgstr "Aggiungi un elemento notice board" - #~ msgid "Notice link" #~ msgstr "Link notizia" @@ -10775,9 +11179,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Previous database copied to file" #~ msgstr "Database precedente copiato nel file" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Tutte le repository erano già aggiornate." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "repository erano già aggiornate. Le rimanenti sono state aggiornate." @@ -10875,9 +11276,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "not a valid directory path" #~ msgstr "percorso directory non valido" -#~ msgid "repository changed. Updating metadata" -#~ msgstr "repository cambiata. Aggiornamento metadati" - #~ msgid "cannot unlock database, compressed file not found" #~ msgstr "impossibile sbloccare il database, file compresso non trovato" @@ -11092,9 +11490,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "No valid repositories" #~ msgstr "Nessuna repository valida" -#~ msgid "not available" -#~ msgstr "non disponibile" - #~ msgid "is empty" #~ msgstr "è vuoto" @@ -11185,9 +11580,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Execute" #~ msgstr "Esegui" -#~ msgid "Destination repository" -#~ msgstr "Repository di destinazione" - #~ msgid "Copy/move packages" #~ msgstr "Copia/Sposta pacchetti" @@ -11261,9 +11653,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Impossibile spostare/copiare pacchetti da repository differenti" -#~ msgid "Execute copy" -#~ msgstr "Esegui copia" - #~ msgid "Entropy packages move/copy" #~ msgstr "Spostamento/Copia pacchetti Entropy" @@ -11276,9 +11665,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Insert your new notice board entry" #~ msgstr "Inserisci la tua nuova notizia" -#~ msgid "Server" -#~ msgstr "Server" - #~ msgid "current revision" #~ msgstr "revisione corrente" @@ -11297,9 +11683,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Choose the execution mode" #~ msgstr "Scegliere modalità di esecuzione" -#~ msgid "Commit message" -#~ msgstr "Messaggio di commit" - #~ msgid "Pretend mode" #~ msgstr "Modalità \"pretend\"" @@ -11375,9 +11758,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Scegli la repository" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Scegli le repository che vuoi scansionare" @@ -11396,9 +11776,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "You must now either press the" #~ msgstr "Ora dovresti premere" -#~ msgid "Update Repositories" -#~ msgstr "Aggiorna Repository" - #~ msgid "or the" #~ msgstr "o" @@ -11473,9 +11850,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "E' necessaria una instanza basata sull'interfacia Client UGC" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Impossibile preparare la directory della cache" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "E' richiesta un'istanza Client valida" @@ -11624,10 +11998,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "Downloading packages system mask" #~ msgstr "Scaricamento maschera di sistema pacchetti" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Scaricamento database repository" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Scaricamento del file di conflitto dei pacchetti taggati" @@ -11664,9 +12034,6 @@ msgstr "_Lancia il Gestore dei pacchetti" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "contatore atomo duplicato, ignoro" -#~ msgid "file not found" -#~ msgstr "file non trovato" - #~ msgid "invalid checksum" #~ msgstr "firma non valida" diff --git a/misc/po/nl.po b/misc/po/nl.po index 620bd6eeb..d06c798cc 100644 --- a/misc/po/nl.po +++ b/misc/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-05-23 14:30+0100\n" "Last-Translator: Andre Parhan \n" "Language-Team: Dutch \n" @@ -20,36 +20,36 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchroniseren van huidige database" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "een moment geduld A.U.B." -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Verwijderen van ingang" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Toevoegen van ingang" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Database tabel exporteren" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Database export voltooid." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -58,19 +58,19 @@ msgstr "Database export voltooid." msgid "ATTENTION" msgstr "ATTENTIE" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "SPM fout" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "Spm Unieke Herkenning niet gevonden voor" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "updaten van repositorie metadata overzicht, even geduld!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "genereren van provided_libs metadata, even geduld!" @@ -245,16 +245,16 @@ msgstr "Portage modulen herladen" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "fout" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "niet gevonden" @@ -303,7 +303,7 @@ msgstr "Kan SPM configuratie fase niet uitvoeren voor" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -364,7 +364,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Kan SPM geinstalleerde pkgs bestand niet updaten" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -399,7 +399,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "bestaat niet" @@ -438,7 +438,7 @@ msgid "Error calculating dependencies" msgstr "Fout tijdens het calculeren van afhankelijkheden" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "niet ondersteund" @@ -500,461 +500,461 @@ msgstr "verbinden met spiegel" msgid "setting directory to" msgstr "veranderen van map naar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Entropy Server Spiegels Omgeving geladen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "repositorie spiegel" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "pakketten spiegel" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "Bestanden opzoeken in spiegel" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "ontgrendelen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "vergrendelen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "spiegel" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "spiegel is reeds vergrendeld" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "spiegel is al vrijgemaakt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "spiegel voor download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "spiegel is al afgesloten voor download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "spiegel is al vrijgegeven voor download" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "voor download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "spiegel succesvol vergrendeld" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "spiegel niet vergrendeld" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "spiegel succesvol vrijgemaakt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "deblokkeer fout" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "spiegel niet vergrendeld" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "verbinden om pakket te downloaden" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "pakket wordt gedownload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "pakket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "staat niet in de lijst van de repositorie!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "verifieren van controlesom van het pakket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "succesvol gedownload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "controlesom komt niet overeen. opnieuw downloaden..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" "blijkt gebroken. Denk er aan om het opnieuw in te pakken. Ik geef het op!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "spiegel heeft geen geldig database revisie bestand" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "onmogelijk de repositorie revisie te downloaden" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "spiegel heeft geen geldig revisie bestand" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "wacht nog 2 minuten voor opgeven" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "spiegel vrijgemaakt" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Lokale statistieken" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "upload map" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "bestanden gereed" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "pakketten map" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "kopie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "verwijder" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Pakketten voor verwijdering" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Pakketten die lokaal verplaatst worden" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Pakketten die worden geupload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Totale grootte van verwijdering" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Totale grootte van upload" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Totale grootte van download" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Externe statistieken voor" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "externe pakketten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "bestanden opgeslagen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Bereken queues" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "pakket+hash worden verwijderd" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "sync" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "verwijderen compleet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "kopieren van bestand+hash naar repositorie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "upload fouten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "reden" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "upload met succes voltooid" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "download fouten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "download met succes voltooid" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "VA checken van pakket bestand" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "foutief pakket bestand, repareren aub" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "starten van pakketten sync" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "pakketten sync" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "socket fout" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "aan" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "Niets te doen voor" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Uitbreidende wachtrijen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "niets te synchroniseren voor" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Wilt u de gegeven stappen volgen ?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nee" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "toetsenbord onderbreking !" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "Je moet ze opnieuw inpakken" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "exceptie opgevangen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "op z'n minst is een spiegel juist gesynchroniseerd! " -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "geordend" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "verzamelen van verlopen pakketten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "verzamelen van verlopen pakketten in de geselecteerde branche's" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "Niets te verwijderen in deze branche" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "dit zijn de verlopen pakketten" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Wilt u doorgaan ?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "verwijderen van pakketten op afstand" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "verwijder fouten" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "verwijderen van lokale pakketten" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "verwijderd" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "Downloaden van notitie bord vanaf spiegels naar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "notitie bord is succesvol gedownload vanaf" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "verwijderen van notitie bord uit" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "notitie bord verwijdering mislukt op" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "notitie bord verwijdering succesvol" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "uploaden van notitie bord vanaf" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "notitie bord upload gefaald op" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "notitie bord upload succesvol" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "Sleutels voor repositorie verlopen" @@ -967,8 +967,8 @@ msgid "download path" msgstr "download pad" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "fouten" @@ -976,260 +976,272 @@ msgstr "fouten" msgid "failed to download from mirror" msgstr "download vanaf spiegel gefaald" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Onmogelijk om uit te pakken" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Problemen met boomupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Terug zetten van de oude gegevens" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "geconfigureerde pakket sets" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Niets geconfigureerd" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "gecomprimeerde database dump + controlesom creeren" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "repositorie pad" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "dump licht" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "dump lichte controlesom" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "opener" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "comprimeren van repositorie + controlesom" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "gecomprimeerd repositorie pad" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "repositorie controlesom" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "gecomprimeerde controlesom" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "voorbereiden van gedecomprimeerde repositorie voor de upload" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "Uitgeschakelde EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "Bezig met het uploaden van repositorie naar spiegel" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "upload gefaald, blokkeren en doorgaan" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "repositorie is reeds gesynchroniseerd" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "repositorie synchronisatie mislukt" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "download problemen" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "repositorie synchronisatie verboden" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "ontbrekende pakket sets" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 msgid "dependencies test reported errors" msgstr "afhankelijkheden test heeft fouten gerapporteerd" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 msgid "these packages haven't been removed yet" msgstr "deze pakketten zijn nog niet verwijderd" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "upload problemen" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "repositorie synchronisatie zonder problemen voltooid" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "Spiegels zijn niet gedeblokkeerd. Synchroniseer ze." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "kan RSS cache updates niet opslaan" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJECTEREN" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "is geinjecteerd" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "gebruik quickpkg handmatig om de embedded db te updaten" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 msgid "Repository updated anyway" msgstr "Repositorie alsnog geupdate" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "Pakket heeft geen sleutelwoord, het wordt gemaskeerd!" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "repositorie niet geconfigureerd" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "beveiligde repositorie ID, kan deze niet gebruiken, sorry gast..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "ongeldige repositorie herziening" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "terugzetten naar 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "synchroniseren van pakketten sets" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "Kan niet overeenkomen" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 msgid "initializing repository" msgstr "Initialiseren van repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "Wilt u de deze repositorie initialiseren ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "Geen geldige tag opgegeven" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "terug spoelen van geselecteerde pakketten van branches" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "niets te doen" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "Dit zijn de pakketten die worden doorgespoeld" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "Nagaan van pakket hash" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "hash komt niet overeen voor" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "verkeerde md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "fout tijdens het downloaden van pakketten van spiegels" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "werkend op branche" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "updaten van pakket" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "pakket doorgespoeld" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "Kan de systeem repositorie niet raken" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Voorbereiden van verplaatsen van geselecteerde pakketten naar" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Voorbereiden van kopieren van geselecteerde pakketten naar" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Notitie" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1237,427 +1249,426 @@ msgstr "" "alle oude pakketten met conflicterende scope zullen worden verwijderd van de " "bestemming repo tenzij geinjecteerd" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "Nieuwe tag" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "Tegengestelde afhankelijkheden" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "Afhankelijkheid" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "Veranderen" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "Kan niet wisselen, pakket niet gevonden, overslaan" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "Bestand verplaatsen" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "laden van data vanaf source repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "GPG sleutel was niet beschikbaar in" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "injecteren van data naar de repositorie locatie" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "verwijderen van invoer uit de source repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "succesvol behandeld atoom" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Injecteren van entropy metadata in de gebouwde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "Voor de duidelijkheid, GPG infrastructuur laden is mislukt" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "injecteren van Entropy metadata" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "invoeren compleet" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "Pakket verwijderen" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Integriteit verificatie van de geselecteerde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Alle pakketten in de repositorie zullen worden gecheckt." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "De volgende pakketten zullen worden gecheckt." -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Werken op spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "checken van hash" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "'digest' controle voor" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NIET gezond" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Dit is de lijst met gebroken pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistieken" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Aantal gecheckte pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Aantal gezonde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Aantal beschadigde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokaal" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "checken status van" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "is corrupt, controlesom opgeslagen" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "Gecontroleerde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "gezonde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "beschadigde pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "gedownloade pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "gefaalde downloads" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "GPG ondertekend pakketten voor de repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Alle missende pakketten in de repositorie worden gedownload." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG niet beschikbaar" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Sleutels niet beschikbaar voor" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "pakket ondertekenen" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Onbekende fout tijdens ondertekenen van pakket" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "ondertekende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "Beschikbaar" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "upload/genegeerd" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Start downloaden van missende bestanden" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Aan het zoeken naar missend of beschadigde bestanden op andere spiegel" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Binaire pakketten zijn succesvol gedownload." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "De volgende pakketten kunnen niet online worden gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Ze zullen niet worden gechecked" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Zet a.u.b. uw branche naar" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "en herhaal" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "Kopieren van database (als deze niet bestaat)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Wisselen van pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "negeren" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "Al reeds in branche" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "migratie loop compleet" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Uitvoeren van wees SPM pakketten test" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Pakket scannen" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "niet meer gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Pakketten string" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Controleren" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Uitvoeren van afhankelijkheden test" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Deze afhankelijkheden zijn niet gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Nodig voor" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "bij repo" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Alle afhankelijkheden zijn voldaan. Alles zit goed." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Beschadigde en overeenkomende pakketten lijst" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Resultaten worden gedumpt in deze bestanden" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Systeem is gezond" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Vergelijken van bibliotheken met Spm, even geduld" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Dit zijn de overeenkomende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Geen overeenkomende pakketten" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Je standaard repositorie is niet geinstalleerd" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Wilt u de standaard repositorie initialiseren ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Doorgaan met een niet geinitialiseerde repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "Entropy repositorie is reeds geblokkeerd door jouw :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "Blokkeren en Synchroniseren van Entropy repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "spiegels status tabel" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Vrijgemaakt" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "geblokkeerd" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "kan spiegel niet blokkeren" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 msgid "Repository is corrupted!" msgstr "Repositorie is corrupt!" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "indexeren van repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "Initialiseren van een lege repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "Entropy repositorie bestand" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "succesvol geinstalleerd" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "pakket toevoegen" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "toegevoegd pakket" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "handmatige afhankelijkheden voor" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 msgid "these are the missing dependencies" msgstr "Deze afhankelijkheden zijn niet gevonden" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 msgid "no missing dependencies !" msgstr "geen missende afhankelijkheden!" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 msgid "Do you agree?" msgstr "Weet u het zeker?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1665,143 +1676,144 @@ msgstr "Weet u het zeker?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Oplossen van metadata" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Databases blokkeren compleet" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Uitzondering Opgetreden, opdrachten worden afgesloten" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "server-zijde repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "communiteit repositorie" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Entropy Server Omgeving Instantie op de repositorie" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "huidige branche" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "type" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Huidig geconfigureerde repositories" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "GPG sleutel verlopen" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "repareer a.u.b." -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "GPG heeft een overwachte fout" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "overslaan" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "Config bestanden" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "checken van systeem" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "er zijn nog nieuwe configuratie bestanden niet geupdate" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "beschikbare dep_rewrites gevonden voor dit pakket" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "toegevoegd" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "vervangen" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "Geen afhankelijkheden herschrijving gedaan voor" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "sets" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "updaten van pakket sets" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "pakket set toevoegen" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "Pakket set verwijderen" @@ -1881,8 +1893,7 @@ msgstr "Updaten van systeem database middels repositorie" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repositorie" @@ -2268,7 +2279,7 @@ msgstr "Multi Ophalen" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "Pakketten" @@ -2326,16 +2337,8 @@ msgstr "Configureren" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Een ander Entropy proces draait nog." @@ -2671,7 +2674,7 @@ msgstr "Repositorie succesvol veilig gesteld" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Alles is goed" @@ -2951,75 +2954,75 @@ msgstr "digest verificatie mislukt, probeer het later opnieuw" msgid "installing" msgstr "installeren" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Opstart afhankelijkheden" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Afhankelijkheid" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Handmatig toegevoegde (door staff) afhankelijkheid" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Afhankelijkheid" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "Corrupte Client Repositorie. Herstel aub een back-up." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "reden niet beschikbaar" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "gebruikers package.mask" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "systeem sleutelwoorden" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "gebruikers package.unmask" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "gebruikers repo package.keywords (alle pakketten)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "gebruikers repo package.keywords" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "gebruikers package.keywords" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "volledig afgeschermd (op sleutelwoord?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "repositorie generale packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "repositorie generale packages.db.keywords" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "gebruikers license.mask" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "gebruikers live unmask" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "gebruikers live mask" @@ -3028,87 +3031,87 @@ msgstr "gebruikers live mask" msgid "Entropy needs your attention" msgstr "Entropy vraagt om uw aandacht" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy heeft een vraag voor u" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Onderbroken" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Geselecteerd nummer" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "selecteer een optie" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Alles afwijzen" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Bevestigen" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Item toevoegen" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Item bewerken" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Verwijder item" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "geef huidige lijst weer" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Jouw keuze (typ een nummer en druk op enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Je hebt geen nummer gegeven." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Ongeldige actie." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "Invoer om toe te voegen (-1 om terug te gaan):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Ongeldige invoer." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Nummer van element om te bewerken (-1 om terug te gaan):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "oud" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "nieuwe waarde:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Ongeldig element." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Nummer van element om te verwijderen (-1 om terug te gaan):" @@ -3269,16 +3272,18 @@ msgstr "GLSA Identifier" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titel" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3400,7 +3405,6 @@ msgstr "U bent niet" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Foutieve parameters" @@ -3450,7 +3454,7 @@ msgid "Error while creating package for" msgstr "Fout bij aanmaken van pakket voor" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Kan niet verder" @@ -3575,7 +3579,7 @@ msgstr "Repositorie is niet beschikbaar" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Sleutelwoord" @@ -3587,7 +3591,7 @@ msgstr "Sleutelwoord" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Gevonden" @@ -3598,7 +3602,6 @@ msgstr "Gevonden" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "overeenkomsten" @@ -3629,8 +3632,8 @@ msgstr "" "(circulair)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3777,8 +3780,9 @@ msgstr "Zoek op verwijderde" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Geen pakketten gevonden" @@ -3838,7 +3842,7 @@ msgstr "Zoek op slot" msgid "Package Set Search" msgstr "Pakket Set Zoeken" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Zoek op tag" @@ -3915,7 +3919,7 @@ msgstr "Download" msgid "Checksum" msgstr "Controlesom" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Afhankelijkheden" @@ -4022,7 +4026,7 @@ msgid "repository already enabled" msgstr "repositorie reeds ingeschakeld" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "repositorie is niet beschikbaar" @@ -4087,7 +4091,7 @@ msgstr "actief" msgid "never synced" msgstr "nooit gesynchroniseerd" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Status" @@ -4138,24 +4142,25 @@ msgstr "Geen repositories opgegeven in" msgid "Unhandled exception" msgstr "Niet afgehandelde exceptie" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Notitie bord is niet beschikbaar" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Inhoud" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Link" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Druk op Enter om door te gaan" @@ -4165,7 +4170,8 @@ msgstr "Druk op Enter om door te gaan" msgid "Exit" msgstr "Afsluiten" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Kies a.u.b. een door het identificatie nummer te typen." @@ -4175,7 +4181,7 @@ msgid "Notice board" msgstr "Notitie Bord" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Je bent geen root" @@ -4197,8 +4203,7 @@ msgid "Type a number." msgstr "Geef een nummer." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Configuratiebestand" @@ -4316,7 +4321,7 @@ msgid "Unique files that would be automerged" msgstr "Unieke bestanden die automatisch samengevoegd worden" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Ongeldige repositorie" @@ -4333,7 +4338,7 @@ msgstr "Reeds Ingelogd als" msgid "Please logout first" msgstr "A.u.b. eerst uitloggen" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4341,7 +4346,7 @@ msgstr "A.u.b. eerst uitloggen" msgid "Username" msgstr "Gebruikersnaam" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4349,7 +4354,7 @@ msgstr "Gebruikersnaam" msgid "Password" msgstr "Wachtwoord" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4360,7 +4365,7 @@ msgstr "A.u.b. inloggen op" msgid "Login aborted. Not logged in." msgstr "Log in geannuleerd. Niet ingelogd." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4565,7 +4570,7 @@ msgid "Installed packages database not available" msgstr "Geinstalleerde pakketten database niet beschikbaar" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "is afgeschreven, gebruik " @@ -4581,15 +4586,15 @@ msgstr "Systeem Database gestofzuigd" msgid "No System Databases found" msgstr "Geen Systeem Database gevonden" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Geen gebackupte databasen gevonden" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Selecteer de database die je wilt herstellen" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Entropy geinstalleerde pakketten database herstel gereedschap" @@ -4875,28 +4880,23 @@ msgstr "Ok, ik geef het op. Jij bent hopeloos" msgid "Go to hell." msgstr "STERF!" -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Basis Opties" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "deze uitvoer" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "versie weergeven" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "schakel gekleurde weergave uit" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 msgid "force colorized output" msgstr "forceer gekleurde weergave" @@ -4904,8 +4904,7 @@ msgstr "forceer gekleurde weergave" msgid "print a bash completion script to stdout" msgstr "print het bash voltooiing script naar stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Programma Opties" @@ -4957,7 +4956,7 @@ msgstr "repositorie notitie bord lezer" msgid "show respositories status" msgstr "geef repositories status weer" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "zoek naar pakketten in repositories" @@ -4996,8 +4995,7 @@ msgstr "update systeem met de laatst beschikbare pakketten" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "vragen voor maken van veranderingen" @@ -5005,8 +5003,7 @@ msgstr "vragen voor maken van veranderingen" msgid "just download packages" msgstr "pakketten alleen downloaden" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "alleen laten zien wat er zou gebeuren" @@ -5188,7 +5185,7 @@ msgstr "deblokkeer een of meerdere pakketten" msgid "configure one or more installed packages" msgstr "configureer een of meer geinstalleerde pakketten" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "zoek naar onbevredigde afhankelijkheden" @@ -5204,7 +5201,7 @@ msgstr "sorteer pakketten op schijf grootte" msgid "look for missing libraries" msgstr "zoek naar ontbrekende bibliotheken" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "resultaten naar bestand schrijven" @@ -5232,7 +5229,7 @@ msgstr "doe diverse queries op repositorie en lokale databases" msgid "search from what package a file belongs" msgstr "zoek naar welk pakket een bestand behoort" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "bekijk pakketten veranderingen-log" @@ -5240,13 +5237,11 @@ msgstr "bekijk pakketten veranderingen-log" msgid "search what packages depend on the provided atoms" msgstr "zoek naar welke pakketten afhangen van de gegeven atomen" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "zoek pakketten op beschrijving" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "geef bestanden weer behorend aan de gegeven atomen" @@ -5288,8 +5283,7 @@ msgid "associate given file paths to applications able to read them" msgstr "" "verbind gegeven bestand paden aan applicaties zodat deze ze kunnen uitlezen" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "geef runtime bibliotheken weer die nodig zijn voor de gegeven atomen" @@ -5305,8 +5299,7 @@ msgstr "Geef de verwijder lijst voor de gespecificeerde atomen weer" msgid "show atoms needing the provided libraries" msgstr "geef atomen weer die nodig zijn voor de gegeven bibliotheken" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "zoek beschikbare pakket sets" @@ -5318,31 +5311,28 @@ msgstr "geef pakketten weer behorend aan het gegeven slot" msgid "show packages owning the provided tags" msgstr "geef pakketten weer behorend aan de gegeven tags" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" "geef directe afhankelijkheden boom weer voor gegeven installeer-bare atomen" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "Neem systeem pakketten mee, opbouwen afhankelijkheden en circulaire " "informatie" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" "geef tegengestelde afhankelijkheden boom weer voor gegeven geinstalleerde " "atomen" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "meer details tonen" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "print resultaten in een scriptbare manier" @@ -5426,7 +5416,7 @@ msgstr "" "genereer geinstalleerde pakketten database door middel van bestanden op het " "systeem [laatste hoop]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "hergenereer SPM UIDs overzicht (SPM <-> Entropy pakketten)" @@ -5445,355 +5435,22 @@ msgstr "" "herstel een eerdere back up van de Entropy geinstalleerde pakketten database" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "handelt communitie-zijde middelen" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "communitie repositories beheer functies" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "scan het Systeem op nieuw gecompileerde pakketten" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analizeer de Entropy Winkel map meteen" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "Her-verpak de gespecificeerde atomen" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "vraag nergens om behalve voor kritische dingen" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "beheer alleen de gespecificeerde atomen" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "voer uit in de interactieve modus (bevestig iedere stap)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"voeg binaire pakketten toe aan repositorie zonder 'scopes' te beinvloeden " -"(multi-pakketten)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "community repositories spiegels management functies" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "sync pakketten, database en doe wat ordening" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "sync alle geconfigureerde repositories" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "synchroniseer pakketten over de primaire spiegels" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "verifieer ook de pakketten integriteit" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"synchroniseer de huidige repositorie database over de primaire spiegels" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "blokkeer de huidige repositorie database (server-zijde)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "deblokkeer de huidige repositorie database (server-zijde)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "blokkeer de huidige repositorie database (client-zijde)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "deblokkeer de huidige repositorie database (client-zijde)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "geef huidige vergrendel status" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "verwijder binaire pakketten niet in de repositories en verlopen" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" -"opruimen van onbeschikbare pakketten van spiegels (hetzelfde als tidy, maar " -"meer nazi)" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "verstrekkende dagen [standaard is: 0, gevaarlijk!]" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "onderhoud een repositorie" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(her)initialiseren van de huidige repositorie database" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "her vul de database niet met pakketten op de spiegels" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(her)creeer de database voor de gespecificeerde repositorie" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" -"forceer een revisie update handmatig voor de huidige repositorie database" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "synchroniseer de database" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "terug spoelen van de oude branches pakketten naar huidige branche" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "verwijder de gegeven atomen van de huidige repositorie database" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"verwijder de gegeven geinjecteerde atomen (alles als geen atoom is " -"gespecificeerd)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "creeer een lege repositorie database in het gegeven pad" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "wissel de gegeven atomen (of wereld) naar de gespecificeerde branche" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "verifieer externe integriteit van de gegeven atomen (of wereld)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "back-up huidige repositorie database" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "herstel een eerdere back up van de repositorie database" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "gespecificeerde repositorie aanzetten" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "gespecificeerde repositorie uitzetten" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "geef de huidige Server Omgeving status weer" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "controleer pakketten in repositorie voor ontbrekende afhankelijkheden" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "behandel pakketten afhankelijkheden" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"kloon een pakket binnen een repositorie en wijs deze toe aan een " -"willekeurige tag" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "verplaats pakketten van de ene repositorie naar een ander" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "haalt afhankelijkheden binnen" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "kopieer pakketten van de ene repositorie naar de andere" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "standaard repositorie instellen" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "beheer digitale handtekeningen van de repositorie (OpenGPG)" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "Creeer sleutel paar voor repositories en onderteken pakketten" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "verwijder sleutel paar (en digitale handtekeningen) van repositorie" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"geef huidig geconfigureerde sleutel informatie voor de gegeven repositories " -"weer" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"teken (of her-teken) pakketten in de repositorie door middel van het huidige " -"sleutel paar" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importeer sleutel paar, en koppen die met de gegeven repositorie" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exporteer publieke sleutel voor gegeven repositorie" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "exporteer prive sleutel van gegeven repositorie" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "doe een zoek actie in de communitie repositorie databases" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "geef weer bij welk pakket de gegeven bestanden horen" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "geef weer welke pakketten afhangen van de gegeven atomen" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "som alle pakketten in de standaard repositorie op" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "zoek pakketten binnen de standaard repositorie database" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "Geef pakketten weer die de gespecificeerde tags bezitten" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "" -"geef geinstalleerde pakketten in het bezit van gespecificeerde revisies" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "Bron pakket manager functies " - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "compilatie functie" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compileer pakketten behorende tot de gegeven categorieen" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "som lijst op met pakketten" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "neem geen oude pakket sloten mee" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "compileer pakketten in gegeven pakket set namen" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "herbouw alles" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "start database update als alles is goed gegaan" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "start spiegel synchronisatie als alles is goed gegaan" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "scan wees pakketten in SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "notitie bord handeling functies" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "voeg een nieuws item to aan het notitie bord" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "Verwijder een nieuws item van het notitie bord" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "lees het huidige notitie bord" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "zoek naar onbevredigde afhankelijkheden op communitie repositories" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "Verifieer de integriteit van de lokale pakket bestanden" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "handelt Gebruiker Gedefinieerde Inhoud mogelijkheden" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "Log in op een gespecificeerde repositorie" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "uitloggen van een gespecificeerde repositorie" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forceer actie" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5801,82 +5458,74 @@ msgstr "" "beheer pakket documenten voor de geselecteerde repositorie (commentaar, " "bestanden, video's)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "haal beschikbare documenten op voor de gespecificeerde pakket sleutel " "(example: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "voeg een nieuw document to aan de gespecificeerde pakket sleutel (voorbeeld: " "x11-libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" "verwijder documenten van de database door middel van hun " "identificatiemiddelen" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "beheer pakket stemmen voor de geselecteerde repositorie" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" "haal stemmen voor de geselecteerde pakket sleutel op (voorbeeld: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" "voeg een stem toe voor de gespecificeerde pakket sleutel (voorbeeld: x11-" "libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "behandeld Entropy cache" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "gooi Entropy cache leeg" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "verwijder gedownloade pakketten en gooi temp. mappen leeg" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "systeem informatie weergeven" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Je moet sys-apps/entropy-server installeren. :-) Doe het !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "Je moet sys-apps/entropy-server installeren/updaten. :-) Doe het !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "onvoldoende parameters" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "Geinstalleerde pakketten repositorie corrupt. Genereer a.u.b. een nieuwe" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "Je harde schijf is vol!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "Onvoldoende geheugen" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -5884,23 +5533,23 @@ msgstr "" "He. Mijn naam is Bug Reporter. Het spijt me dat ik je moet informeren dat " "Equo is gecrashed. Nou ja, weet je, shit happens." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "Maar er is iets dat je kan doen om Equo een beter programma te maken." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- OOK AL WIL IK NIET DAT JE MEERDERE KEREN HETZELFDE RAPPORT STUURT --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Nu zal ik je laten zien wat er is gebeurt. Vrees niet, Ik ben hier om je te " "helpen." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5908,11 +5557,11 @@ msgstr "" "Ach ja, Ik kan niet eens schrijven naar /tmp. Dus, kopieer de fout en mail " "hem naar lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Natuurlijk zijn we verbonden met Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -5922,11 +5571,11 @@ msgstr "" "over je hardware, naar mijn makers zodat zij me kunnen repareren? (Uw IP " "wordt gelogged)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "ok, ok ok ok... Sorry!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -5934,19 +5583,19 @@ msgstr "" "Als je bericht terug wilt ontvangen (en actief mee helpt), beantwoord dan " "ook deze vragen:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Je volledige naam:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Je e-mail adres:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Waar was je mee bezig:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -5954,7 +5603,7 @@ msgstr "" "Dank je hartelijk. De fout is doorgestuurd en hopelijk wordt het probleem zo " "snel mogelijk verholpen." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." @@ -5962,11 +5611,11 @@ msgstr "" "Ouch. Kan rapport niet verzenden. Als je wil, mail dan het volgende bestand " "naar lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Entropy/Equo versies komen niet overeen" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "het kan uw systeem exploderen!" @@ -5975,7 +5624,6 @@ msgstr "het kan uw systeem exploderen!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Niets te doen" @@ -6117,10 +5765,7 @@ msgstr "is beschadigd" msgid "atom" msgstr "atoom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "in" @@ -6145,6 +5790,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Dit zijn de pakketten die HANDMATIG verwijderd moeten worden" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Volgende pakketten worden verwijderd" @@ -6373,7 +6019,7 @@ msgstr "Installatie voltooid" msgid "These are the packages that would be masked" msgstr "Dit zijn de pakketten die zouden worden gemaskeerd" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Wilt u doorgaan ?" @@ -6409,8 +6055,7 @@ msgstr "Verwijderen verboden" msgid "Would you like to calculate dependencies ?" msgstr "Wilt u de afhankelijkheden berekenen ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Wilt u ze nu verwijderen ?" @@ -6460,7 +6105,10 @@ msgstr "10 seconden" msgid "Libraries/Executables statistics" msgstr "Statistieken van Bibliotheken/Opstartbestanden" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Niet overeenkomend" @@ -6468,714 +6116,1024 @@ msgstr "Niet overeenkomend" msgid "Would you like to install them ?" msgstr "Will je ze installeren ?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "geef huidige repositories status weer" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "doe een zoek actie in de repositorie databases" - -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -"vergelijk pakket afhankelijkheden binnen de standaard repositorie database" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(her)initialiseren van de huidige repositorie database" +msgid "available tests" +msgstr "Beschikbaar" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Afhankelijkheden test" + +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Bibliotheken test" + +#: ../../server/eit/commands/test.py:57 +#, fuzzy +msgid "dump results to file" +msgstr "resultaten naar bestand schrijven" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" +msgstr "zoek naar ontbrekende bibliotheken" + +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" +msgstr "" + +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Pakket atomen" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "verifieer ook de pakketten integriteit" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 +#, fuzzy +msgid "verify remote packages integrity" +msgstr "verifieer ook de pakketten integriteit" + +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" +msgstr "" + +#: ../../server/eit/commands/query.py:55 +#, fuzzy +msgid "execute query" +msgstr "Voer kopie uit" + +#: ../../server/eit/commands/query.py:56 +#, fuzzy +msgid "available queries" +msgstr "Beschikbaar" + +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "gebruikers package.mask" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" +msgstr "" + +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "gespecificeerde repositorie aanzetten" + +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Hostnaam" + +#: ../../server/eit/commands/query.py:72 +#, fuzzy +msgid "show libraries (.so) required by matched packages" +msgstr "Dit zijn de overeenkomende pakketten" + +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "" +"geef tegengestelde afhankelijkheden boom weer voor gegeven geinstalleerde " +"atomen" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" +msgstr "" + +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" msgstr "voer geen tegengestelde afhankelijkheden door" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "wissel naar de gespecificeerde branche en repositorie" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "verifieer externe integriteit van de gegeven atomen" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "kloon een pakket en wijs deze toe aan een willekeurige tag" - -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" -msgstr "verberg gegeven pakket in de gegeven repositorie" - -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" -msgstr "maak gegeven pakketten beschikbaar in gegeven repositorie" - -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "scan wees pakketten in SPM" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "scan naar nieuwe pakketten in SPM" - -#: ../../server/reagent.py:120 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "look for missing libraries (scan system)" -msgstr "zoek naar ontbrekende bibliotheken" +msgid "search through package sets" +msgstr "zoek beschikbare pakket sets" -#: ../../server/reagent.py:122 +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" + +#: ../../server/eit/commands/query.py:114 #, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "zoek naar ontbrekende bibliotheken" +msgid "package set name" +msgstr "Pakket Set naam" -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "verwijder gedownloade pakketten en leeg temp. mappen)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "Starten met synchroniseren van data over spiegels (pakketten/database)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Afbreken !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Voer een uitvoer bericht in" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Zal ik doorgaan met de orden procedure ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Sluiten/Indienen" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Let op de tekst" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "Relevante URL (optioneel)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Repositorie notitie bord, nieuw item invoegen" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Kies degene die je wilt verwijderen" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Weet je zeker dat je deze wilt verwijderen?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Starten met blokkeren van spiegel databases" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Een probleem deed zich voor op een van de spiegels" - -#: ../../server/server_activator.py:458 -msgid "Repositories lock complete" -msgstr "Repositories afsluiting compleet" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Starten met deblokkeren van spiegel databases" - -#: ../../server/server_activator.py:473 -msgid "Repositories unlock complete" -msgstr "Repositories opening compleet" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Starten met blokkeren van download spiegel databases" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Download spiegels blokkering compleet" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Starten met deblokkeren van download spiegel databases" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Download spiegels ontsluiten compleet" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "DATABASE" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "DOWNLOAD" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 +#: ../../server/eit/commands/query.py:118 #, fuzzy -msgid "Syncing repository" -msgstr "Synchroniseren van repositories" +msgid "search packages through their description" +msgstr "zoek pakketten op beschrijving" -#: ../../server/server_activator.py:566 -msgid "Repositories sync error, cannot continue." -msgstr "Repositories synchronisatie fouten, kan niet doorgaan." +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Repositorie informatie" -#: ../../server/server_activator.py:588 -msgid "Cleaning unavailable packages from repository" -msgstr "Opruimen van onbeschikbare pakketten van repositorie" +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Pakket omschrijving" -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" -"Verwijderen van onbeschikbare pakketten, overschrijden van Entropy " -"standaarden is over het algemeen slecht." +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Niets gevonden" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" -"Gebruikers met over datum repositories kunnen geen pakket bestanden extern " -"vinden." +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "bibliotheken" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -msgid "Remote Entropy Repository Status" -msgstr "Externe Entropy Repositorie Status" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Host" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Herziening" - -#: ../../server/server_activator.py:615 -msgid "Local revision currently at" -msgstr "Lokale revisie is op dit moment" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "kies in welke branche er wordt gewerkt" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "pakket repositories handeling functies" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "synchroniseer pakket repositories over primaire spiegels" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "repositorie handelingen functies" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "GPG omgeving geladen, thuis map" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "Importeren van sleutel paar voor repositorie" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "Een ander sleutel paar bestaat reeds voor de repositorie" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "Geimporteerde GPG sleutel met vingerafdruk" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Nu moet je alle pakketten erin ondertekenen" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "Exporteren van prive sleutel voor repositorie" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "Exporteren van publieke sleutel voor repositorie" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "Geen sleutelpaar voor repositorie" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "Sleutel VERLOPEN voor deze repositorie" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "Onmogelijk de GPG sleutel te exporteren voor repositorie" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "Geexporteerde GPG sleutel voor repositorie" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "Creeer sleutels voor repositorie" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "Een ander sleutel bestaat al voor repositorie" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "Voer e-mail in" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "Voer verloop tijd in dagen in (0= geen verloop tijd)" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "Voer wachtzin in (leeg=geen wachtzin)" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "Repositorie GPG sleutel paar creatie" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "GPG sleutel gemaakt met vingerafdruk" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" -"Wees 100% zeker dat een herstel sleutel wordt gemaakt en sla die op op een " -"veilige plaats." - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "U wilt waarschijnlijk uw sleutels ook naar een sleutel server sturen" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "Verwijder sleutels van repositorie" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "Geen sleutels beschikbaar voor gegeven repositorie" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "Weet je het zeker?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "Sleutel metadata niet beschikbaar voor" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "GPG sleutel verwijderd met vingerafdruk" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "GPG informatie voor repositorie" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "Publieke sleutel herkenning" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "Publieke sleutel vingerafdruk" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Sleutel grootte" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Aanmaakdatum" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Verloopt op" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "Geen pakket opgegeven." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Inschakelen" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Ingeschakeld" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "reeds ingeschakeld" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Uitschakelen" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "is al uitgeschakeld" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "Ongeldige invoer." - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "Geen juiste repositorie opgegeven." - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Komt niet overeen" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "Geen pakketten geselecteerd." - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "pakket afhankelijkheden" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Geen afhankelijkheden" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Afhankelijkheden type" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Selecteer een afhankelijkheid type voor" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Afhankelijkheden editor" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Bevestigen" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "afhankelijkheden succesvol geupdate" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "Pakket Maskeren" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "Demaskeren" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Overeenkomende pakketten voor verwijderen" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Onvoldoende parameters" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "De volgende pakketten zullen worden verwijderd van de database" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Verwijderen van geselecteerde pakketten" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" -"Pakketten verwijderd. Voor verwijdering van binaire pakketten, start " -"activator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Zoeken naar pakketten die kunnen worden verwijderd" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Dit zijn de pakketten die zullen worden verwijderd" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" -"omschakelen van branche, zorg ervoor dat je pakketten zijn gesynchroniseerd." - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Verzamelen van pakketten die worden gemarkeerd" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Dit zijn de pakketten die zouden worden gemarkeerd" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Geen juiste repositories opgegeven." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Ongeldige repositories opgegeven." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Entropy repositorie is geinitialiseerd" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Maak lege database aan in" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Kan niet overschrijven, bestand bestaat reeds" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Bijwerken Repositorie database" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Er zijn geen geldige pakketten om opnieuw te verpakken." - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Scannen van database op verschillen" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Ongeldig atoom" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Niks te doen" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "" -"De volgende pakketten zullen worden veranderd naar geinjecteerde status" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Wil je ze nu transformeren ?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformeren van database" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Database transformatie compleet" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "verlopen" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Kies welke Pakket Set je wilt verwijderen" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Dit pakket verwijderen?" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Kies welke Pakket Set je wilt toevoegen" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Dit pakket toevoegen?" - -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "Volgende pakketten zullen worden geinstalleerd/geupdate" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "Waarschuwing" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Wil je ze nu inpakken ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "binnenin" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Pakketten comprimeren" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Negeren van gebroken Spm ingang, hercompileer a.u.b." - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Niets te doen, controleer later." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Invoer behandeld" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "gebruiker niet gevonden" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Geen pakketten gevonden" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "Draaien van pakketten metadata update" + +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "Herziening" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "opgeslagen pakketten" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "upload pakketten" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "ondertekende pakketten" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "toegevoegd" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "Veranderen" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"Dit zijn de nieuw beschikbare pakketten, update-baar of niet geinstalleerd" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Geen pakket set gevonden" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "pakket set niet gevonden" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Niets gevonden" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "geef repositories status weer" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Geen kernel pakket" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "Toon geinstalleerde pakketten" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "niet beschikbaar" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "geen pakketten" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "zoek naar pakketten in repositories" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "zoek naar pakketten in repositories" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Entropy repositorie is geinitialiseerd" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Huidige repositorie" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Bestemming van repositorie" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "pakket afhankelijkheden" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "verplaats pakketten van de ene repositorie naar een ander" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Pakket Set naam" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Niets gevonden" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "staat niet in de lijst van de repositorie!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "socket fout" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "ongeldige repositorie herziening" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "geef repositories status weer" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "verplaats pakketten van de ene repositorie naar een ander" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "deze hulp" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "verwijder repositorie" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Repositorie wordt overgeslagen" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Repositorie herziening" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Update Repositories" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Kies de repositorie" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Verstuur bericht" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Voer een uitvoer bericht in" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Externe Entropy Repositorie Status" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Host" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Op afstand" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "lokaal" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Afbreken !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Genereer inlog informatie" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Toon beschikbare Pakketten" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Voeg notitie bord invoer toe" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Verwijdere notitie bord invoer" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Notitie Bord" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Voer URL in" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Kies degene die je wilt verwijderen" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Weet je zeker dat je deze wilt verwijderen?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Sluiten/Indienen" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Haal repositorie notitie bord op" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "repositorie pad" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "werken met repositorie" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "gespecificeerde repositorie aanzetten" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Geinstalleerde Pakketten repositorie" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Verwijderen van geselecteerde pakketten" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Komt niet overeen" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Er zijn geen geldige pakketten om opnieuw te verpakken." + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Scannen van database op verschillen" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Ongeldig backend-type" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Niks te doen" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "is geinjecteerd" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformeren van database" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Database transformatie compleet" +msgid "Action completed" +msgstr "invoeren compleet" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "verlopen" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Kies welke Pakket Set je wilt verwijderen" +msgid "Select packages for removal" +msgstr "Zoeken naar pakketten die kunnen worden verwijderd" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Dit pakket verwijderen?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Overeenkomende voor verwijdering van de repositorie database" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Kies welke Pakket Set je wilt toevoegen" +msgid "Select packages to add" +msgstr "Sommige pakketten zijn gemaskeerd" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Dit pakket toevoegen?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Deze worden toegevoegd aan de systeem database" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "Waarschuwing" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Wil je ze nu inpakken ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "binnenin" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Pakketten comprimeren" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Negeren van gebroken Spm ingang, hercompileer a.u.b." + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Niets te doen, controleer later." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Invoer behandeld" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Geinstalleerde Pakketten repositorie" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "is niet beschikbaar" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "werken met repositorie" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "vergelijk een pakket in de repositories" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "gespecificeerde repositorie aanzetten" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Downloaden van repositorie database" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "geef huidige vergrendel status" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "spiegels status tabel" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Server" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Naar repositorie" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "In repositorie" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"Neem systeem pakketten mee, opbouwen afhankelijkheden en circulaire " +"informatie" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "" +"geef tegengestelde afhankelijkheden boom weer voor gegeven geinstalleerde " +"atomen" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Opruimen van onbeschikbare pakketten van repositorie" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "" +"Verwijderen van onbeschikbare pakketten, overschrijden van Entropy " +"standaarden is over het algemeen slecht." + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Alle repositories waren reeds up to date" + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Opruimen van onbeschikbare pakketten van repositorie" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "bestand niet gevonden" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "geef bestanden weer behorend aan de gegeven atomen" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "gespecificeerde repositorie aanzetten" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "voer geen tegengestelde afhankelijkheden door" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "verplaats pakketten van de ene repositorie naar een ander" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "pakket afhankelijkheden" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Geen afhankelijkheden" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Afhankelijkheden type" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Selecteer een afhankelijkheid type voor" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Afhankelijkheden editor" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Bevestigen" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "afhankelijkheden succesvol geupdate" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Geinstalleerde Pakketten repositorie" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "pakket afhankelijkheden" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configureren van pakket" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "kopieer pakketten van de ene repositorie naar de andere" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Uitpakken van afhankelijkheid pakket" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forceer actie" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Creeer sleutel paar voor repositories en onderteken pakketten" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "verwijder sleutel paar (en digitale handtekeningen) van repositorie" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "Geen sleutelpaar voor repositorie" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"teken (of her-teken) pakketten in de repositorie door middel van het huidige " +"sleutel paar" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importeer sleutel paar, en koppen die met de gegeven repositorie" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Publieke sleutel vingerafdruk" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "externe repositorie opeens geblokkeerd" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "GPG omgeving geladen, thuis map" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "Creeer sleutels voor repositorie" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "Een ander sleutel bestaat al voor repositorie" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "Voer e-mail in" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "Voer verloop tijd in dagen in (0= geen verloop tijd)" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "Voer wachtzin in (leeg=geen wachtzin)" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "Repositorie GPG sleutel paar creatie" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "GPG sleutel gemaakt met vingerafdruk" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Nu moet je alle pakketten erin ondertekenen" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Wees 100% zeker dat een herstel sleutel wordt gemaakt en sla die op op een " +"veilige plaats." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "U wilt waarschijnlijk uw sleutels ook naar een sleutel server sturen" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "Verwijder sleutels van repositorie" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "Geen sleutels beschikbaar voor gegeven repositorie" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "Weet je het zeker?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "Sleutel metadata niet beschikbaar voor" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "GPG sleutel verwijderd met vingerafdruk" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "GPG informatie voor repositorie" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "Publieke sleutel herkenning" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "Publieke sleutel vingerafdruk" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Sleutel grootte" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Aanmaakdatum" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Verloopt op" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Importeren van sleutel paar voor repositorie" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Een ander sleutel paar bestaat reeds voor de repositorie" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "Geimporteerde GPG sleutel met vingerafdruk" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Nu moet je alle pakketten erin ondertekenen" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "Exporteren van prive sleutel voor repositorie" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "Exporteren van publieke sleutel voor repositorie" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "Geen sleutelpaar voor repositorie" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "Sleutel VERLOPEN voor deze repositorie" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "Onmogelijk de GPG sleutel te exporteren voor repositorie" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "Geexporteerde GPG sleutel voor repositorie" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "onderhoud een repositorie" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Pakket atomen" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Kan cache map niet op zetten" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "Niet ondersteunde Service" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Ongeldig backend-type" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "zoek naar pakketten in repositories" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Onmogelijk om branche te wisselen" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branche" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Ongeldig atoom" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "onderhoud een repositorie" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Huidige repositorie" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7232,112 +7190,118 @@ msgstr "Dit zijn incomplete pakket sets, ga door op je eigen risico" msgid "Application" msgstr "Programma" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 msgid "Successfully logged in." msgstr "Succesvol ingelogd." -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "Niet ondersteunde Service" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Stem registratie succesvol" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Fout bij het registreren van je stem" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 msgid "Already voted" msgstr "Reeds gestemd" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Applicaties" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Applicaties voor verwijdering" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Applicaties voor downgrade" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Applicaties voor installatie" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Applicaties voor updates" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Applicaties voor herinstallatie" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Voorgesteld" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Bestemming" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Beveiliging id." -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Applicatie naam" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Een moment a.u.b." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Adviezen worden geladen" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Geen advisories" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Er zijn geen items weer te geven" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Bestandsnaam" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 msgid "Cannot disable repository!" msgstr "Kan repositorie niet uitschakelen!" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Actief" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Update" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Herziening" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Repositorie Identifier" @@ -7754,6 +7718,10 @@ msgstr "Sommige pakketten zijn gemaskeerd" msgid "Masked package" msgstr "Gemaskeerde Pakketten" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Ingeschakeld" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Bevestig bovenstaande actie" @@ -9801,12 +9769,482 @@ msgstr "Magneto Software update kennisgever" msgid "_Load Package Manager" msgstr "_Start Pakketten Beheerder" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "Entropy Server omgeving moet gestart worden als root" +#~ msgid "handles community-side features" +#~ msgstr "handelt communitie-zijde middelen" + +#~ msgid "community repositories management functions" +#~ msgstr "communitie repositories beheer functies" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "scan het Systeem op nieuw gecompileerde pakketten" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analizeer de Entropy Winkel map meteen" + +#~ msgid "repackage the specified atoms" +#~ msgstr "Her-verpak de gespecificeerde atomen" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "vraag nergens om behalve voor kritische dingen" + +#~ msgid "manage only the specified atoms" +#~ msgstr "beheer alleen de gespecificeerde atomen" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "voer uit in de interactieve modus (bevestig iedere stap)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "voeg binaire pakketten toe aan repositorie zonder 'scopes' te beinvloeden " +#~ "(multi-pakketten)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "community repositories spiegels management functies" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "sync pakketten, database en doe wat ordening" + +#~ msgid "sync all the configured repositories" +#~ msgstr "sync alle geconfigureerde repositories" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "synchroniseer pakketten over de primaire spiegels" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "synchroniseer de huidige repositorie database over de primaire spiegels" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "blokkeer de huidige repositorie database (server-zijde)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "deblokkeer de huidige repositorie database (server-zijde)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "blokkeer de huidige repositorie database (client-zijde)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "deblokkeer de huidige repositorie database (client-zijde)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "verwijder binaire pakketten niet in de repositories en verlopen" + +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "" +#~ "opruimen van onbeschikbare pakketten van spiegels (hetzelfde als tidy, " +#~ "maar meer nazi)" + +#~ msgid "expiration days [default is: 0, dangerous!]" +#~ msgstr "verstrekkende dagen [standaard is: 0, gevaarlijk!]" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(her)initialiseren van de huidige repositorie database" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "her vul de database niet met pakketten op de spiegels" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(her)creeer de database voor de gespecificeerde repositorie" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "forceer een revisie update handmatig voor de huidige repositorie database" + +#~ msgid "synchronize the database" +#~ msgstr "synchroniseer de database" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "terug spoelen van de oude branches pakketten naar huidige branche" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "verwijder de gegeven atomen van de huidige repositorie database" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "verwijder de gegeven geinjecteerde atomen (alles als geen atoom is " +#~ "gespecificeerd)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "creeer een lege repositorie database in het gegeven pad" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "" +#~ "wissel de gegeven atomen (of wereld) naar de gespecificeerde branche" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "verifieer externe integriteit van de gegeven atomen (of wereld)" + +#~ msgid "backup current repository database" +#~ msgstr "back-up huidige repositorie database" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "herstel een eerdere back up van de repositorie database" + +#~ msgid "enable the specified repository" +#~ msgstr "gespecificeerde repositorie aanzetten" + +#~ msgid "disable the specified repository" +#~ msgstr "gespecificeerde repositorie uitzetten" + +#~ msgid "show the current Server Interface status" +#~ msgstr "geef de huidige Server Omgeving status weer" + +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "" +#~ "controleer pakketten in repositorie voor ontbrekende afhankelijkheden" + +#~ msgid "handle packages dependencies" +#~ msgstr "behandel pakketten afhankelijkheden" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "kloon een pakket binnen een repositorie en wijs deze toe aan een " +#~ "willekeurige tag" + +#~ msgid "pulls dependencies in" +#~ msgstr "haalt afhankelijkheden binnen" + +#~ msgid "set the default repository" +#~ msgstr "standaard repositorie instellen" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "beheer digitale handtekeningen van de repositorie (OpenGPG)" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "geef huidig geconfigureerde sleutel informatie voor de gegeven " +#~ "repositories weer" + +#~ msgid "export public key of given repository" +#~ msgstr "exporteer publieke sleutel voor gegeven repositorie" + +#~ msgid "export private key of given repository" +#~ msgstr "exporteer prive sleutel van gegeven repositorie" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "doe een zoek actie in de communitie repositorie databases" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "geef weer bij welk pakket de gegeven bestanden horen" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "geef weer welke pakketten afhangen van de gegeven atomen" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "som alle pakketten in de standaard repositorie op" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "zoek pakketten binnen de standaard repositorie database" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "Geef pakketten weer die de gespecificeerde tags bezitten" + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "" +#~ "geef geinstalleerde pakketten in het bezit van gespecificeerde revisies" + +#~ msgid "source package manager functions" +#~ msgstr "Bron pakket manager functies " + +#~ msgid "compilation function" +#~ msgstr "compilatie functie" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compileer pakketten behorende tot de gegeven categorieen" + +#~ msgid "just list packages" +#~ msgstr "som lijst op met pakketten" + +#~ msgid "do not pull old package slots" +#~ msgstr "neem geen oude pakket sloten mee" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "compileer pakketten in gegeven pakket set namen" + +#~ msgid "rebuild everything" +#~ msgstr "herbouw alles" + +#~ msgid "run database update if all went fine" +#~ msgstr "start database update als alles is goed gegaan" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "start spiegel synchronisatie als alles is goed gegaan" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "scan wees pakketten in SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "notitie bord handeling functies" + +#~ msgid "add a news item to the notice board" +#~ msgstr "voeg een nieuws item to aan het notitie bord" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "Verwijder een nieuws item van het notitie bord" + +#~ msgid "read the current notice board" +#~ msgstr "lees het huidige notitie bord" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "zoek naar onbevredigde afhankelijkheden op communitie repositories" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "Verifieer de integriteit van de lokale pakket bestanden" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Je moet sys-apps/entropy-server installeren. :-) Doe het !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Je moet sys-apps/entropy-server installeren/updaten. :-) Doe het !" + +#~ msgid "show current repositories status" +#~ msgstr "geef huidige repositories status weer" + +#~ msgid "do some searches into repository databases" +#~ msgstr "doe een zoek actie in de repositorie databases" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "" +#~ "vergelijk pakket afhankelijkheden binnen de standaard repositorie database" #, fuzzy -#~ msgid "reset error" -#~ msgstr "socket fout" +#~ msgid "(re)initialize the current repository" +#~ msgstr "(her)initialiseren van de huidige repositorie database" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "wissel naar de gespecificeerde branche en repositorie" + +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verifieer externe integriteit van de gegeven atomen" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "kloon een pakket en wijs deze toe aan een willekeurige tag" + +#~ msgid "mask given package in given repository" +#~ msgstr "verberg gegeven pakket in de gegeven repositorie" + +#~ msgid "unmask given packages in given repository" +#~ msgstr "maak gegeven pakketten beschikbaar in gegeven repositorie" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "scan wees pakketten in SPM" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "scan naar nieuwe pakketten in SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "zoek naar ontbrekende bibliotheken" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "verwijder gedownloade pakketten en leeg temp. mappen)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Starten met synchroniseren van data over spiegels (pakketten/database)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Zal ik doorgaan met de orden procedure ?" + +#~ msgid "Notice text" +#~ msgstr "Let op de tekst" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "Relevante URL (optioneel)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Repositorie notitie bord, nieuw item invoegen" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Starten met blokkeren van spiegel databases" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Een probleem deed zich voor op een van de spiegels" + +#~ msgid "Repositories lock complete" +#~ msgstr "Repositories afsluiting compleet" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Starten met deblokkeren van spiegel databases" + +#~ msgid "Repositories unlock complete" +#~ msgstr "Repositories opening compleet" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Starten met blokkeren van download spiegel databases" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Download spiegels blokkering compleet" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "Starten met deblokkeren van download spiegel databases" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Download spiegels ontsluiten compleet" + +#~ msgid "DATABASE" +#~ msgstr "DATABASE" + +#~ msgid "DOWNLOAD" +#~ msgstr "DOWNLOAD" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "Synchroniseren van repositories" + +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Repositories synchronisatie fouten, kan niet doorgaan." + +#~ msgid "" +#~ "Users with outdated repositories, won't be able to find package files " +#~ "remotely." +#~ msgstr "" +#~ "Gebruikers met over datum repositories kunnen geen pakket bestanden " +#~ "extern vinden." + +#~ msgid "Local revision currently at" +#~ msgstr "Lokale revisie is op dit moment" + +#~ msgid "choose on what branch operating" +#~ msgstr "kies in welke branche er wordt gewerkt" + +#~ msgid "package repositories handling functions" +#~ msgstr "pakket repositories handeling functies" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "synchroniseer pakket repositories over primaire spiegels" + +#~ msgid "repository handling functions" +#~ msgstr "repositorie handelingen functies" + +#~ msgid "no package specified." +#~ msgstr "Geen pakket opgegeven." + +#~ msgid "Enabling" +#~ msgstr "Inschakelen" + +#~ msgid "already enabled" +#~ msgstr "reeds ingeschakeld" + +#~ msgid "Disabling" +#~ msgstr "Uitschakelen" + +#~ msgid "Disabled" +#~ msgstr "Uitgeschakeld" + +#~ msgid "already disabled" +#~ msgstr "is al uitgeschakeld" + +#~ msgid "Invalid syntax." +#~ msgstr "Ongeldige invoer." + +#~ msgid "No valid repository specified." +#~ msgstr "Geen juiste repositorie opgegeven." + +#~ msgid "No packages selected." +#~ msgstr "Geen pakketten geselecteerd." + +#~ msgid "Masking" +#~ msgstr "Pakket Maskeren" + +#~ msgid "Unmasking" +#~ msgstr "Demaskeren" + +#~ msgid "Matching packages to remove" +#~ msgstr "Overeenkomende pakketten voor verwijderen" + +#~ msgid "Not enough parameters" +#~ msgstr "Onvoldoende parameters" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "De volgende pakketten zullen worden verwijderd van de database" + +#~ msgid "Removing selected packages" +#~ msgstr "Verwijderen van geselecteerde pakketten" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Pakketten verwijderd. Voor verwijdering van binaire pakketten, start " +#~ "activator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Dit zijn de pakketten die zullen worden verwijderd" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "omschakelen van branche, zorg ervoor dat je pakketten zijn " +#~ "gesynchroniseerd." + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Verzamelen van pakketten die worden gemarkeerd" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Dit zijn de pakketten die zouden worden gemarkeerd" + +#~ msgid "No valid repositories specified." +#~ msgstr "Geen juiste repositories opgegeven." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Ongeldige repositories opgegeven." + +#~ msgid "Creating empty database to" +#~ msgstr "Maak lege database aan in" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Kan niet overschrijven, bestand bestaat reeds" + +#~ msgid "Bumping Repository database" +#~ msgstr "Bijwerken Repositorie database" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "" +#~ "De volgende pakketten zullen worden veranderd naar geinjecteerde status" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Wil je ze nu transformeren ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformeren van database" + +#~ msgid "Database transform complete" +#~ msgstr "Database transformatie compleet" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Kies welke Pakket Set je wilt verwijderen" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Kies welke Pakket Set je wilt toevoegen" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Volgende pakketten zullen worden geinstalleerd/geupdate" + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "Dit zijn de nieuw beschikbare pakketten, update-baar of niet geinstalleerd" + +#~ msgid "No package sets found" +#~ msgstr "Geen pakket set gevonden" + +#~ msgid "package set not found" +#~ msgstr "pakket set niet gevonden" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Database transformatie compleet" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Kies welke Pakket Set je wilt verwijderen" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Kies welke Pakket Set je wilt toevoegen" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Entropy Server omgeving moet gestart worden als root" #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Kan Entropy bestanden niet vergrendelen" @@ -9974,9 +10412,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "empty username" #~ msgstr "lege gebruikersnaam" -#~ msgid "user not found" -#~ msgstr "gebruiker niet gevonden" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "u moet inloggen op de website om uw wachtwoord formaat up-te-daten" @@ -10052,9 +10487,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "EAPI3 Service status" #~ msgstr "EAPI3 Service status" -#~ msgid "remote repository suddenly locked" -#~ msgstr "externe repositorie opeens geblokkeerd" - #~ msgid "EAPI3 Service" #~ msgstr "EAPI3 Service" @@ -10418,9 +10850,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "From repository" #~ msgstr "Vanaf repositorie" -#~ msgid "To repository" -#~ msgstr "Naar repositorie" - #~ msgid "Copy instead of move?" #~ msgstr "Kopieer ipv verplaatsen?" @@ -10470,18 +10899,9 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Check mode" #~ msgstr "Check modus" -#~ msgid "Get repository notice board" -#~ msgstr "Haal repositorie notitie bord op" - -#~ msgid "Remove notice board entry" -#~ msgstr "Verwijdere notitie bord invoer" - #~ msgid "Entry Identifiers" #~ msgstr "Invoer Identifiers" -#~ msgid "Add notice board entry" -#~ msgstr "Voeg notitie bord invoer toe" - #~ msgid "Notice link" #~ msgstr "Notitie link" @@ -10568,9 +10988,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Previous database copied to file" #~ msgstr "Vorige database gekopieerd naar bestand" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Alle repositories waren reeds up to date" - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "repositories waren reeds up-to-date, de overige zijn geüpdate." @@ -10894,9 +11311,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "No valid repositories" #~ msgstr "Geen geldige repositories" -#~ msgid "not available" -#~ msgstr "niet beschikbaar" - #~ msgid "is empty" #~ msgstr "is leeg" @@ -10981,9 +11395,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Execute" #~ msgstr "Uitvoeren" -#~ msgid "Destination repository" -#~ msgstr "Bestemming van repositorie" - #~ msgid "Copy/move packages" #~ msgstr "Kopieer/verplaats pakketten" @@ -11060,9 +11471,6 @@ msgstr "_Start Pakketten Beheerder" #~ "Kan pakketten van verschillende repositories niet verplaatsen/kopiÃÆâ" #~ "€™Ãƒâ€šÃ‚«ren" -#~ msgid "Execute copy" -#~ msgstr "Voer kopie uit" - #~ msgid "Entropy packages move/copy" #~ msgstr "Entropy pakketten verplaats/kopieer" @@ -11075,9 +11483,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Insert your new notice board entry" #~ msgstr "Voer jouw nieuwe notitie bord invoer in" -#~ msgid "Server" -#~ msgstr "Server" - #~ msgid "current revision" #~ msgstr "huidige revisie" @@ -11096,9 +11501,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Choose the execution mode" #~ msgstr "Kies de uitvoer modus" -#~ msgid "Commit message" -#~ msgstr "Verstuur bericht" - #~ msgid "Pretend mode" #~ msgstr "Uitprobeer mode" @@ -11174,9 +11576,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Eclass" #~ msgstr "Eclassen" -#~ msgid "Choose the repository" -#~ msgstr "Kies de repositorie" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Kies de repositories die je wilt scannen" @@ -11195,9 +11594,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "You must now either press the" #~ msgstr "Je moet een van de %s drukken" -#~ msgid "Update Repositories" -#~ msgstr "Update Repositories" - #~ msgid "or the" #~ msgstr "of de" @@ -11273,9 +11669,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgstr "" #~ "Een geldige GGC Cliënt Omgeving gebaseerde instantie is nodig" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Kan cache map niet op zetten" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Een geldige Cliënt omgevings instantie is nodig" @@ -11421,10 +11814,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "Downloading packages system mask" #~ msgstr "Downloaden van pakketten systeem masker" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Downloaden van repositorie database" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Downloaden van conflicterend ge-tagged pakketten bestand" @@ -11461,9 +11850,6 @@ msgstr "_Start Pakketten Beheerder" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "teller voor atoom is gedupliceerd, negeren" -#~ msgid "file not found" -#~ msgstr "bestand niet gevonden" - #~ msgid "invalid checksum" #~ msgstr "onjuiste controlesom" diff --git a/misc/po/pl.po b/misc/po/pl.po index 69f71e5f7..33ec794dc 100644 --- a/misc/po/pl.po +++ b/misc/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-08-20 21:07+0100\n" "Last-Translator: Sławomir Nizio \n" "Language-Team: Sławomir Nizio \n" @@ -18,36 +18,36 @@ msgstr "" "X-Poedit-Language: Polish\n" "X-Poedit-Country: POLAND\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchronizowanie bieżącej bazy" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "proszę czekać" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Usuwanie pozycji" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Dodawanie pozycji" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Eksportowanie bazy danych" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Eksport bazy zakończony." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -56,19 +56,19 @@ msgstr "Eksport bazy zakończony." msgid "ATTENTION" msgstr "UWAGA" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "Błąd związany z SPM" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "Unikatowy identyfikator SPM nie znaleziony dla" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "aktualizowanie układu metadanych dla repozytorium, proszę czekać!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "generowanie metadanych provided_libs, proszę czekać!" @@ -243,16 +243,16 @@ msgstr "Przeładowywanie modułów Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "błąd" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "nie znaleziono" @@ -301,7 +301,7 @@ msgstr "Nie można wykonać etapu konfiguracji SPM dla" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -363,7 +363,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Nie można zaktualizować pliku z pakietami zainstalowanymi przez SPM" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -398,7 +398,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "nie istnieje" @@ -437,7 +437,7 @@ msgid "Error calculating dependencies" msgstr "Błąd przy obliczaniu zależności" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "nieobsługiwana" @@ -499,460 +499,460 @@ msgstr "łączenie z serwerem lustrzanym" msgid "setting directory to" msgstr "ustawienia katalogu na" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Interfejs Entropy serwerów lustrzanych załadowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "serwer lustrzany repozytorium" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "serwer lustrzany pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "szukanie pliku na serwerze lustrzanym" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "odblokowywanie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "blokowanie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "serwer lustrzany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "serwer lustrzany już zablokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "serwer lustrzany już odblokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "pobierania z serwera lustrzanego" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "pobieranie z serwera lustrzanego jest już zablokowane" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "pobieranie z serwera lustrzanego już odblokowane" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "(pobieranie)" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "serwer lustrzany pomyślnie zablokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "serwer lustrzany nie zablokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "serwer lustrzany pomyślnie odblokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "błąd przy odblokowywaniu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "serwer lustrzany nie został odblokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "łączenie się, by pobrać pakiet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "pobieranie pakietu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "pakiet" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "nie jest wyszczególniony w repozytorium!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "sprawdzanie sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "pobrano pomyślnie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "suma kontrolna się nie zgadza; ponowne pobieranie..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "wygląda na uszkodzony. Rozważ ponowne spaczkowanie. Poddaję się!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "serwer lustrzany nie ma prawidłowego pliku z wersją repozytorium" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "nie udało się pobrać danych o wersji repozytorium" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "serwer lustrzany nie ma prawidłowego pliku z wersją" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "oczekiwanie maksymalnie dwie minuty, zanim operacja będzie anulowana" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "serwer lustrzany odblokowany" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Lokalne statystyki" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "katalog wysyłania" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "pliki gotowe" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "katalog pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "kopiuj" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "usuń" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Pakiety do usunięcia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Pakiety do przeniesienia lokalnie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Pakiety do wysłania" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Całkowity rozmiar usuwanych" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Całkowity rozmiar do wysłania" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Całkowity rozmiar do pobrania" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Statystyki zdalnego serwera dla" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "zdalne pakiety" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "zapisane pliki" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Obliczanie kolejek operacji" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "usuwanie pakietu i hasha" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "usuwanie zakończone" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "kopiowanie pliku i hasha do repozytorium" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "błędy przy wysyłaniu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "powód" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "wysyłanie zakończone pomyślnie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "błędy przy pobieraniu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "pobieranie ukończone pomyślnie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA: sprawdzanie pliku pakietu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "uszkodzony pakiet, proszę naprawić" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "rozpoczynanie synchronizacji pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "synchronizacja pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "błąd gniazda" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "dla" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "nic do zrobienia" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "nic do zsynchronizowania dla" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Czy chcesz wykonać kroki powyżej?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "przerwanie z klawiatury!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "musisz spaczkować je ponownie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "złapano wyjątek" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "przynajmniej jeden serwer lustrzany zsynchronizowany poprawnie!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "zbieranie przestarzałych pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "zbieranie przestarzałych pakietów w wybranych gałęziach" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "nic do usunięcia w tej gałęzi" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "to są przestarzałe pakiety" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Czy chcesz kontynuować?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "zdalne usuwanie pakietów" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "błędy przy usuwaniu" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "lokalne usuwanie pakietów" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "usunięte" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "pobieranie powiadomień z serwerów lustrzanych do" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "powiadomienia pobrane pomyślnie z" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "usuwanie powiadomienia z" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "usuwanie powiadomienia nie udało się dla" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "pomyślnie usunięto powiadomienie" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "wysyłanie powiadomienia z" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "wysłanie powiadomienia nie udało się dla" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "pomyślnie wysłano powiadomienie" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "Klucze dla repozytorium utraciły ważność" @@ -965,8 +965,8 @@ msgid "download path" msgstr "ścieżka pobierania" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "błędy" @@ -974,260 +974,272 @@ msgstr "błędy" msgid "failed to download from mirror" msgstr "nie udało się pobrać z serwera lustrzanego" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 msgid "failed to unpack" msgstr "Nie można rozpakować" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Problemy z \"treeupdates\"" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Przywracanie starych danych" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "skonfigurowane zestawy pakietów" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Brak skonfigurowanych" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "tworzenie skompresowanego zrzutu bazy + sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "ścieżka repozytorium" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "kompresowanie repozytorium + suma kontrolna" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "ścieżka skompresowanego repozytorium" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "suma kontrolna repozytorium" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 #, fuzzy msgid "compressed checksum" msgstr "suma kontrolna skompresowanego" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "przygotowywanie zdekompresowanego repozytorium do wysłania" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "wyłączone EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "przygotowywanie do wysłania repozytorium na serwer lustrzany" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "wysyłanie się nie udało, blokowanie i kontynuacja" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "repozytorium już zsynchronizowane" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "synchronizowanie repozytorium się nie udało" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problemy przy pobieraniu" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "zabronione synchronizowanie z repozytorium" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "brakujące zestawy pakietów" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 msgid "dependencies test reported errors" msgstr "test zależności wykrył błędy" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 msgid "these packages haven't been removed yet" msgstr "te pakiety nie zostały jeszcze usunięte" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "problemy przy wysyłaniu" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "sync repozytorium zakończył się pomyślnie" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "serwery lustrzane nie zostały odblokowane. Zsynchronizuj je." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "nie można zapisać cache dla RSS z aktualizacjami" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "WSTRZYKIWANIE" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "został wstrzyknięty" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "uruchom quickpkg ręcznie, żeby zaktualizować wbudowaną bazę danych" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 msgid "Repository updated anyway" msgstr "Repozytorium zaktualizowane mimo to" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "pakiet nie ma ustawionego słowa kluczowego, więc będzie zamaskowane!" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "repozytorium nieskonfigurowane" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "chronione ID repozytorium, nie można tego użyć, wybacz, facet..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "nieprawidłowa wersja repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "ustawianie domyślnej wartości na 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "synchronizowanie zestawów pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "nie można dopasować" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 msgid "initializing repository" msgstr "inicjowanie repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "czy na pewno chcesz zainicjować to repozytorium?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "wprowadzono nieprawidłowy tag" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "nic do zrobienia" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "sprawdzanie sumy kontrolnej pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "suma kontrolna nie zgadza się dla" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "zła suma md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "błąd przy pobieraniu pakietów z serwerów lustrzanych" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "pracowanie na gałęzi" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "aktualizowanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Przygotowanie do przeniesienia wybranych pakietów do" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Przygotowanie do skopiowania wybranych pakietów do" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Uwaga" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 #, fuzzy msgid "" "all old packages with conflicting scope will be removed from destination " @@ -1236,427 +1248,426 @@ msgstr "" "wszystkie stare pakiety w konfliktującym zakresie będą usunięte z położenia " "docelowego, jeśli nie zostały wstrzyknięte" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nowy tag" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "zależność wsteczna" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "zależność" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "przełączanie" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "nie można przełączyć, pakiet nieznaleziony, pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "przenoszenie pliku" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "ładowanie danych ze źródłowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "klucz GPG był dostępny w" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "wstrzykiwanie danych do docelowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "usuwanie wpisu ze źródłowego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "pomyślnie obsłużono atom" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Wstrzykiwanie metadanych Entropy do zbudowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "Dla informacji: infrastruktura GPG nie mogła się załadować" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "wstrzykiwanie metadanych Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "wstrzykiwanie zakończone" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "usuwanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Sprawdzanie spójności wybranych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Wszystkie pakiety w repozytorium zostaną sprawdzone." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "To jest lista pakietów, które zostaną sprawdzone" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Praca na serwerze lustrzanym" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "sprawdzanie sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "weryfikacja sumy kontrolnej" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NIEzdrowa" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Oto lista uszkodzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Serwer lustrzany" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statystyki" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Liczba sprawdzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Liczba zdrowych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Liczba uszkodzonych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokalne" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "sprawdzanie statusu" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "jest uszkodzony, zapisana suma kontrolna" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "sprawdzone pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "zdrowe pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "uszkodzone pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "pobrane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "pakiety, których się nie dało pobrać" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "podpisywanie pakietów dla repozytorium używając GPG" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Wszystkie brakujące pakiety w repozytorium zostaną pobrane." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG niedostępne" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Klucze niedostępne dla" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "podpisywanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Nieznany błąd podczas podpisywania pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "podpisane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "dostępne" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "wysłane/zignorowane" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Rozpoczynam pobieranie brakujących plików" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Szukanie brakujących/uszkodzonych plików na innym serwerze lustrzanym" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Binarne pakiety pomyślnie pobrane." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "To są pakiety, które nie mogły być znalezione online" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Nie zostaną sprawdzone" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Proszę ustawić swoją gałąź na" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "i ponowić" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "Kopiowanie repozytorium (jeśli nie istnieje)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Przełączanie pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "już w gałęzi" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "pętla migracji zakończona" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Wykonywanie sprawdzenia osieroconych pakietów SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Skanowanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "nie znaleziono" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Łańcuch pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Sprawdzanie" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Wykonywanie testu zależności" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Oto nieznalezione zależności:" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Potrzebne dla" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Wszystkie zależności są spełnione. Wszystko gra." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Lista uszkodzonych i dopasowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Zapisywanie wyników do tych plików" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "System jest zdrowy" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Dopasowywanie bibliotek z SPM, proszę czekać" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "To są dopasowane pakiety" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Brak dopasowanych pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Twoje domyślne repozytorium nie jest zainicjowane" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Czy chcesz zainicjować swoje domyślne repozytorium?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Kontynuacja z niezainicjowanym repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "Repozytorium Entropy jest już przez ciebie zablokowane :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "Blokowanie i synchronizowanie repozytorium Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Tabela statusu serwerów lustrzanych" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Odblokowany" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Zablokowany" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "nie można zablokować serwera lustrzanego" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 msgid "Repository is corrupted!" msgstr "Repozytorium jest uszkodzone!" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "indeksowanie repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "inicjowanie pustego repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "Plik repozytorium Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "pomyślnie zainicjowano" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "dodawanie pakietu" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "dodano pakiet" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "wer." -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "ręczne zależności dla" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 msgid "these are the missing dependencies" msgstr "to są brakujące zależności" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 msgid "no missing dependencies !" msgstr "nie ma brakujących zależności!" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 msgid "Do you agree?" msgstr "Zgadzasz się?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1664,142 +1675,143 @@ msgstr "Zgadzasz się?" msgid "Yes" msgstr "Tak" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "właścicielem nie jest użytkownik o UID i GID=0" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Zakończono blokowanie baz danych" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "wstrzyknięty pakiet, brak osobnego pakietu z danymi debugowania" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Złapano wyjątek, zamykanie zadań" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "repozytorium po stronie serwera" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "repozytorium społecznościowe" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Instancja interfejsu serwera Entropy w repozytorium" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "bieżąca gałąź" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "typ" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Obecnie skonfigurowane repozytoria" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "Klucz GPG utracił ważność" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "proszę to koniecznie naprawić" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "GPG otrzymał nieoczekiwany błąd" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "pomijanie" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "pliki konfiguracyjne" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "sprawdzanie systemu" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "są pliki konfiguracyjne, które nie zostały jeszcze zaktualizowane" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "znaleziono dostępne dep_rewrites dla pakietu" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "dodane" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "zastąpione" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "Nie utworzono reguł zamiany zależności dla" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "zestawy" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "aktualizowanie zestawów pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "dodawanie zestawu pakietów" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "usuwanie zestawu pakietów" @@ -1879,8 +1891,7 @@ msgstr "Aktualizacja bazy danych systemu używając repozytorium" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repozytorium" @@ -2264,7 +2275,7 @@ msgstr "Równoczesne pobieranie" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "pakietu/ów" @@ -2322,16 +2333,8 @@ msgstr "Konfigurowanie" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Inny klient Entropy jest już uruchomiony." @@ -2668,7 +2671,7 @@ msgstr "Pomyślnie utworzono kopię zapasową repozytorium" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Wszystko dobrze" @@ -2947,75 +2950,75 @@ msgstr "nie udało się zweryfikować sumy kontrolnej, spróbuj później" msgid "installing" msgstr "instalowanie" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Zależność do uruchomienia programu" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Zależność typu post" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Zależność dodana ręcznie (przez twórców)" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Zależność do zbudowania pakietu" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "Uszkodzone repozytorium klienta. Proszę przywrócić z kopii zapasowej." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "powód niedostępny" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "całkowicie zamaskowane (przez słowo kluczowe?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "" @@ -3024,87 +3027,87 @@ msgstr "" msgid "Entropy needs your attention" msgstr "Entropy potrzebuje twojej uwagi" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy ma do ciebie pytanie" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Przerwano" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Wybierz liczbę" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Proszę wybrać opcję" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Odrzuć wszystkie" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Potwierdź" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Dodaj element" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Edytuj element" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Usuń element" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Pokaż bieżącą listę" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Twój wybór (wpisz liczbę i wciśnij enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Nie wpisałeś liczby." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Nieprawidłowa czynność." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "Łańcuch do dodania (-1 - wstecz):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Nieprawidłowy łańcuch znaków." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Numer elementu do edycji (-1 - wstecz):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "stare" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "nowa wartość:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Nieprawidłowy element." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Numer elementu do usunięcia (-1 - wstecz):" @@ -3260,16 +3263,18 @@ msgstr "Identyfikator GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Tytuł" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3394,7 +3399,6 @@ msgstr "Nie jesteś" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Złe parametry" @@ -3444,7 +3448,7 @@ msgid "Error while creating package for" msgstr "Błąd podczas tworzenia pakietu dla" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Nie można kontynuować" @@ -3569,7 +3573,7 @@ msgstr "Repozytorium nie jest dostępne" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Słowo kluczowe" @@ -3581,7 +3585,7 @@ msgstr "Słowo kluczowe" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Znaleziono" @@ -3592,7 +3596,6 @@ msgstr "Znaleziono" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "element/y/ów" @@ -3622,8 +3625,8 @@ msgstr "" "pakiety już określone na wyższych poziomach jako zależność (zapętlenie)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3770,8 +3773,9 @@ msgstr "Wyszukiwanie - usuwane" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Nie znaleziono pakietów" @@ -3830,7 +3834,7 @@ msgstr "Wyszukiwanie - slot" msgid "Package Set Search" msgstr "Wyszukiwanie - zestawy pakietów" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Wyszukiwanie - tag" @@ -3907,7 +3911,7 @@ msgstr "" msgid "Checksum" msgstr "Suma kontrolna" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Zależności" @@ -4014,7 +4018,7 @@ msgid "repository already enabled" msgstr "repozytorium już jest włączone" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "repozytorium niedostępne" @@ -4078,7 +4082,7 @@ msgstr "aktywne" msgid "never synced" msgstr "nigdy nie synchronizowane" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Status" @@ -4129,24 +4133,25 @@ msgstr "Nie określono repozytoriów w" msgid "Unhandled exception" msgstr "Nieobsłużony wyjątek" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Powiadomienia z tablicy ogłoszeń niedostępne" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Zawartość" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Łącze" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Naciśnij Enter, aby kontynuować" @@ -4156,7 +4161,8 @@ msgstr "Naciśnij Enter, aby kontynuować" msgid "Exit" msgstr "Wyjście" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Wybierz, wpisując identyfikator" @@ -4166,7 +4172,7 @@ msgid "Notice board" msgstr "Powiadomienia" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Nie jesteś rootem" @@ -4188,8 +4194,7 @@ msgid "Type a number." msgstr "Wpisz liczbę." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Plik konfiguracyjny" @@ -4308,7 +4313,7 @@ msgid "Unique files that would be automerged" msgstr "Unikatowe pliki, które mają być scalone automatycznie" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Nieprawidłowe repozytorium" @@ -4325,7 +4330,7 @@ msgstr "Już zalogowany jako" msgid "Please logout first" msgstr "Proszę się najpierw wylogować" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4333,7 +4338,7 @@ msgstr "Proszę się najpierw wylogować" msgid "Username" msgstr "Nazwa użytkownika" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4341,7 +4346,7 @@ msgstr "Nazwa użytkownika" msgid "Password" msgstr "Hasło" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4352,7 +4357,7 @@ msgstr "Proszę zalogować się -" msgid "Login aborted. Not logged in." msgstr "Logowanie przerwane - niezalogowany." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4559,7 +4564,7 @@ msgid "Installed packages database not available" msgstr "Baza danych zainstalowanych pakietów niedostępna" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr " - przestarzałe, proszę użyć" @@ -4575,15 +4580,15 @@ msgstr "Uporządkowano systemową bazę danych" msgid "No System Databases found" msgstr "Nie znaleziono systemowych baz danych" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Nie znaleziono kopii zapasowych baz danych" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Wybierz bazę danych, którą chcesz przywrocić" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Narzędzie przywracania bazy danych zainstalowanych pakietów Entropy" @@ -4868,28 +4873,23 @@ msgstr "OK, poddaję się - nie ma dla ciebie nadziei" msgid "Go to hell." msgstr "Idź do diabła." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Podstawowe opcje" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "ten tekst" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "wypisz wersję" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "nie używaj kolorów" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 msgid "force colorized output" msgstr "wymuś używanie kolorów" @@ -4897,8 +4897,7 @@ msgstr "wymuś używanie kolorów" msgid "print a bash completion script to stdout" msgstr "wypisz na standardowe wyjście uzupełnienia poleceń basha" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Opcje programu" @@ -4951,7 +4950,7 @@ msgstr "czytnik powiadomień dla repozytorium" msgid "show respositories status" msgstr "pokaż status repozytoriów" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "szukaj pakietów w repozytoriach" @@ -4990,8 +4989,7 @@ msgstr "zaktualizuj system do najnowszych dostępnych pakietów" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "pytaj przed dokonaniem zmian" @@ -4999,8 +4997,7 @@ msgstr "pytaj przed dokonaniem zmian" msgid "just download packages" msgstr "tylko pobierz pakiety" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "tylko pokaż, co zostałoby zrobione" @@ -5183,7 +5180,7 @@ msgstr "odmaskuj jeden lub więcej pakietów" msgid "configure one or more installed packages" msgstr "skonfiguruj jeden lub więcej zainstalowanych pakietów" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "poszukaj niespełnionych zależności" @@ -5199,7 +5196,7 @@ msgstr "posortuj pakiety ze względu na użycie pamięci dyskowej" msgid "look for missing libraries" msgstr "poszukaj brakujących bibliotek" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "zapisz wyniki do plików" @@ -5227,7 +5224,7 @@ msgstr "wykonaj różne zapytania do repozytorium i lokalnych baz danych" msgid "search from what package a file belongs" msgstr "poszukaj pakietu, do którego należy plik" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "pokaż historię zmian dla pakietu" @@ -5235,13 +5232,11 @@ msgstr "pokaż historię zmian dla pakietu" msgid "search what packages depend on the provided atoms" msgstr "poszukaj, które pakiety zależą od podanych atomów" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "przeszukaj pakiety ze względu na opis" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "pokaż pliki należące do podanych atomów" @@ -5282,8 +5277,7 @@ msgid "associate given file paths to applications able to read them" msgstr "" "powiąż podane ścieżki plików z programami, które są w stanie je odczytać" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "pokaż biblioteki runtime potrzebne przez podane atomy" @@ -5299,8 +5293,7 @@ msgstr "pokaż drzewo usuwanych elementów dla podanych atomów" msgid "show atoms needing the provided libraries" msgstr "pokaż atomy potrzebujące podanych bibliotek" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "przeszukaj dostępne zestawy pakietów" @@ -5312,32 +5305,29 @@ msgstr "pokaż pakiety, które posiadają podany slot" msgid "show packages owning the provided tags" msgstr "pokaż pakiety, które posiadają podane tagi" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" "pokaż drzewo bezpośrednich zależności dla podanych atomów możliwych do " "instalacji" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "dołącz pakiety systemowe, zależności do zbudowania elementu oraz informacje " "o zapętleniach" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" "pokaż drzewo odwrotnych zależności dla podanych atomów możliwych do " "instalacji" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "pokazuj więcej szczegółów" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "wypisz wyniki w sposób pozwalający na użycie w skryptach" @@ -5422,7 +5412,7 @@ msgstr "" "wygeneruj bazę danych zainstalowanych pakietów używając plików dostępnych w " "systemie [ostania nadzieja]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" "wygeneruj ponownie odwzorowanie UID-ów dla SPM (SPM <-> pakiety Entropy)" @@ -5443,353 +5433,22 @@ msgstr "" "przywróć zapisaną wcześniej bazę danych zainstalowanych pakietów Entropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "obsługuje funkcje związane ze społecznością" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "funkcje zarządzania repozytoriami społecznościowymi" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "skanuj system w poszukiwaniu nowo skompilowanych pakietów" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analizuj bezpośrednio katalog Entropy Store" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "spaczkuj ponownie podane atomy" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "nie pytaj o nic (poza krytycznymi rzeczami)" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "zarządzaj tylko podanymi atomami" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "uruchom w trybie interaktywnym (zadając kolejno pytania)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"dodaj binarne pakiety do repozytorium bez wpływania na zakres (multipakiety)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "" -"funkcje zarządzania serwerami lustrzanymi dla repozytoriów społecznościowych" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "zsynchronizuj pakiety, bazę danych, oprócz tego zrób nieco porządku" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "zsynchronizuj wszystkie skonfigurowane repozytoria" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "zsynchronizuj pakiety przez podstawowe serwery lustrzane" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "sprawdź też integralność pakietów" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"zsynchronizuj bazę danych bieżącego repozytorium przez podstawowe serwery " -"lustrzane" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "zablokuj bieżącą bazę danych repozytorium (po stronie serwera)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "odblokuj bieżącą bazę danych repozytorium (po stronie serwera)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "zablokuj bieżącą bazę danych repozytorium (po stronie klienta)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "odblokuj bieżącą bazę danych repozytorium (po stronie klienta)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "pokaż statystyki bieżących blokad" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "usuń binarne pakiety, których nie ma w repozytorium i są przestarzałe" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" -"usuń niedostępne pakiety z serwerów lustrzanych (podobne do tidy, ale " -"bardziej \"nazi\")" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "zarządzanie repozytorium" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "zainicjuj (zainicjuj ponownie) bieżącą bazę danych repozytorium" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" -"nie wypełniaj bazy danych przy użyciu pakietów na serwerach lustrzanych" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "utwórz (utwórz ponownie) bazę danych dla określonego repozytorium" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "wymuś ręcznie podbicie wersji dla bieżącej bazy danych repozytorium" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "zsynchronizuj bazę danych" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "usuń podane atomy z bieżącej bazy danych repozytorium" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "usuń podane wstrzyknięte atomy (wszystkie, jeśli nie podano żadnego)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "utwórz puste repozytorium w podanej ścieżce" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "przełącz na określoną gałąź dla podanych atomów (albo wszystkich)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "zweryfikuj zdalnie integralność podanych atomów (albo wszystkich)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "utwórz kopię bieżącej bazy danych repozytorium" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "przywróć utworzoną wcześniej bazę danych repozytorium" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "aktywuj określone repozytorium" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "dezaktywuj określone repozytorium" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "pokaż status bieżącego interfejsu serwera" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "sprawdź, czy pakiety w repozytorium mają niespełnione zależności" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "obsłuż zależności pakietów" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "sklonuj pakiet do repozytorium i przypisz mu arbitralny tag" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "przesuń pakiety z jednego repozytorium do innego" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "uwzględnia też zależności" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "skopiuj pakiety z jednego repozytorium do innego" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "ustaw domyślne repozytorium" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "zarządzaj cyfrowymi podpisami (OpenGPG) dla repozytorium" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "utwórz parę kluczy dla repozytoriów i podpisz pakiety" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "usuń parę kluczy (i cyfrowe podpisy) z repozytorium" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"pokaż informację o obecnie skonfigurowanych kluczach dla podanego " -"repozytorium" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"podpisz (albo podpisz ponownie) pakiety w repozytorium używając obecnie " -"ustawionej pary kluczy" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importuj parę kluczy, powiąż z podanym repozytorium" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "eksportuj klucz publiczny dla podanego repozytorium" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "eksportuj klucz prywatny dla podanego repozytorium" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "przeszukaj bazy danych repozytoriów społecznościowych" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "pokaż, do jakiego pakietu należą podane pliki" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "pokaż, jakie pakiety zależą od podanych atomów" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "wypisz wszystkie pakiety w domyślnym repozytorium" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "szukaj pakietów w bazie danych domyślnego repozytorium" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "pokaż pakiety, które posiadają podane tagi" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "pokaż zainstalowane pakiety, które posiadają określone wersje" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "funkcje menadżera pakietów źródłowych" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "funkcja kompilacji" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "skompiluj pakiety, które należą do podanych kategorii" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "tylko wypisz pakiety" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "nie uwzględniaj starych slotów pakietów" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "skompiluj pakiety w podanych zestawach pakietów" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "przebuduj wszystko" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "wykonaj aktualizację bazy danych, jeśli wszystko przebiegło pomyślnie" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "" -"uruchom synchronizację serwerów lustrzanych, jeśli wszystko przebiegło " -"pomyślnie" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "skanuj za osieroconymi pakietami SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "funkcje obsługi powiadomień" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "dodaj wiadomość do powiadomień" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "usuń wiadomość z powiadomień" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "przeczytaj bieżące powiadomienia" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "poszukaj niespełnionych zależności w repozytoriach społecznościowych" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "zweryfikuj integralność lokalnych plików pakietów" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "obsługuje funkcjonalność treści tworzonych przez użytkowników" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "zaloguj się w podanym repozytorium" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "wyloguj się z podanego repozytorium" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "wymuś operację" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5797,79 +5456,70 @@ msgstr "" "zarządzaj dokumentami dla pakietów dla wybranego repozytorium (komentarze, " "pliki, pliki wideo)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "weź dostępne dokumenty dla określonego słowa kluczowego pakietu (np. x11-" "libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "dodaj nowy dokument dla określonego słowa kluczowego pakietu (np. x11-libs/" "qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "usuń dokumenty z bazy danych używając ich identyfikatorów" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "zarządzaj ocenami pakietów dla wybranego repozytorium" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "weź ocenę dla określonego słowa kluczowego pakietu (np. x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "dodaj ocenę dla określonego słowa kluczowego pakietu (np. x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "obsługuje cache Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "wyczyść cache Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "usuń pobrane pakiety i wyczyść katalogi tymczasowe" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "pokaż informacje systemowe" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Trzeba zainstalować sys-apps/entropy-server. :-) Zrób to!" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Trzeba zainstalować/zaktualizować sys-apps/entropy-server. :-) Zrób to!" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "za mało argumentów" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "Repozytorium zainstalowanych pakietów jest uszkodzonych. Proszę je ponownie " "wygenerować." -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "Twój twardy dysk jest zapełniony! Twoja wina!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "Nie ma wolnej pamięci, facet! Twoja wina!" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -5877,23 +5527,23 @@ msgstr "" "Cześć. Nazywam się Zgłaszacz Błędów. Przykro mi poinformować, że Equo " "awaryjnie przerwało pracę. Cóż, wiesz, przypadki chodzą po ludziach." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Ale jest coś, co możesz zrobić, żeby pomóc w tym, by Equo było lepszym " "programem." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- NAWET JEŚLI NIE CHCĘ, BYŚ WYSYŁAŁ TEN SAM RAPORT O BŁĘDACH WIELE RAZY --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "Teraz pokażę ci, co się stało. Bez nerwów, jestem tu po to, by pomóc." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5901,11 +5551,11 @@ msgstr "" "O tak, nawet nie mogę pisać do /tmp. Więc proszę skopiuj błąd i wyślij e-" "maila: lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Oczywiście masz połączenie z Internetem..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -5915,11 +5565,11 @@ msgstr "" "do moich twórców, dzięki czemu będą mogli mnie naprawić? (Twoje IP zostanie " "zapisane)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ok, ok ok ok... Wybacz!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -5927,19 +5577,19 @@ msgstr "" "Jeżeli chcesz uzyskać kontakt (i otrzymać aktywne wsparcie), odpowiedz też " "na poniższe pytania:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Imię i nazwisko:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Adres e-mail:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Czym się zajmujesz:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -5947,7 +5597,7 @@ msgstr "" "Dziękuję bardzo. Błąd został zgłoszony i - miejmy nadzieję - problem " "zostanie rozwiązany tak szybko, jak to możliwe." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." @@ -5955,11 +5605,11 @@ msgstr "" "Uch. Nie można wysłać zgłoszenia. Kiedy chcesz, wyślij plik poniżej do " "lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Wersje Entropy i Equo nie pasują do siebie" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "może to spowodować, że twój system wybuchnie!" @@ -5968,7 +5618,6 @@ msgstr "może to spowodować, że twój system wybuchnie!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Nic do zrobienia" @@ -6113,10 +5762,7 @@ msgstr "jest uszkodzony" msgid "atom" msgstr "atom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "w" @@ -6141,6 +5787,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "To są pakiety, które powinny zostać usunięte RĘCZNIE" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Te są pakiety, które mają być usunięte" @@ -6372,7 +6019,7 @@ msgstr "Instalacja zakończona" msgid "These are the packages that would be masked" msgstr "To są pakiety, które mają być zamaskowane" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Czy chcesz kontynuować?" @@ -6408,8 +6055,7 @@ msgstr "Usunięcie zabronione" msgid "Would you like to calculate dependencies ?" msgstr "Czy chcesz, aby zostały obliczone zależności?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Czy chcesz je teraz usunąć?" @@ -6459,7 +6105,10 @@ msgstr "10 sekund" msgid "Libraries/Executables statistics" msgstr "Statystyki bibliotek/plików wykonywalnych" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Nie dopasowano" @@ -6467,715 +6116,1027 @@ msgstr "Nie dopasowano" msgid "Would you like to install them ?" msgstr "Czy chcesz je zainstalować?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "pokaż status bieżących repozytoriów" +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "przeszukaj bazy danych repozytorium" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" -msgstr "dopasuj zależność pakietu w bazie domyślnego repozytorium" +#: ../../server/eit/commands/test.py:48 +#, fuzzy +msgid "available tests" +msgstr "dostępne" -#: ../../server/reagent.py:72 -msgid "(re)initialize the current repository" -msgstr "zainicjuj (zainicjuj ponownie) bieżące repozytorium" +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Test zależności" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" -msgstr "nie dołączaj zależności wstecznych" +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Test bibliotek" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "przełącz na określoną gałąź w repozytorium" +#: ../../server/eit/commands/test.py:57 +#, fuzzy +msgid "dump results to file" +msgstr "zapisz wyniki do plików" -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "zweryfikuj zdalnie integralność podanych atomów" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "sklonuj pakiet i przypisz mu arbitralny tag" - -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" -msgstr "zamaskuj podany pakiet w podanym repozytorium" - -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" -msgstr "odmaskuj podany pakiet w podanym repozytorium" - -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "skanuj za osieroconymi pakietami w SPM" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "skanuj za nowymi pakietami dostępnymi w SPM" - -#: ../../server/reagent.py:120 -msgid "look for missing libraries (scan system)" -msgstr "poszukaj brakujących bibliotek (skanuj system)" - -#: ../../server/reagent.py:122 -msgid "look for missing libraries (scan repository metadata)" +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" msgstr "poszukaj brakujących bibliotek (skanuj metadane repozytorium)" -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "usuń pobrane pakiety i wyczyść katalogi tymczasowe" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -"Rozpoczynanie synchronizacji danych pomiędzy serwerami lustrzanymi (pakiety/" -"baza danych)" -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Przerwanie!" +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Proszę wpisać commit message" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Czy kontynuować z procedurą tidy?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Wyjdź/dokonaj zmian" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Tekst powiadomienia" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "Stosowny URL (opcjonalnie)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Powiadomienia repozytorium, dodawanie nowego wpisu" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Wybierz ten, który chcesz usunąć" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Czy jesteś pewien, że chcesz to usunąć?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Rozpoczynanie blokowania baz danych serwerów lustrzanych" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Pojawił się problem na co najmniej jednym serwerze lustrzanym" - -#: ../../server/server_activator.py:458 -msgid "Repositories lock complete" -msgstr "Blokowanie repozytoriów ukończone" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Rozpoczynanie odblokowania baz danych serwerów lustrzanych" - -#: ../../server/server_activator.py:473 -msgid "Repositories unlock complete" -msgstr "Odblokowanie repozytoriów ukończone" - -#: ../../server/server_activator.py:479 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Starting to lock download mirrors databases" -msgstr "Rozpoczynanie blokowania baz danych serwerów lustrzanych pobierania" +msgid "package names" +msgstr "Pakiety" -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Blokada serwerów lustrzanych pobierania zakończona" - -#: ../../server/server_activator.py:494 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Starting to unlock download mirrors databases" -msgstr "Rozpoczynanie odblokowania baz danych serwerów lustrzanych pobierania" +msgid "verify local packages integrity" +msgstr "sprawdź też integralność pakietów" -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Odblokowanie serwerów lustrzanych pobierania zakończone" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -msgid "Syncing repository" -msgstr "Synchronizowanie repozytorium" - -#: ../../server/server_activator.py:566 -msgid "Repositories sync error, cannot continue." -msgstr "Błąd przy synchronizowaniu baz danych, nie można kontynuować." - -#: ../../server/server_activator.py:588 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Obliczanie dostępnych pakietów dla" +msgid "verify remote packages integrity" +msgstr "sprawdź też integralność pakietów" -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -"Usuwanie niedostępnych pakietów; pomijanie domyślnego ustawienia Entropy " -"jest generalnie złe." -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/query.py:55 +msgid "execute query" msgstr "" -"Użytkownicy ze starymi repozytoriami nie będą w stanie znaleźć plików " -"pakietów zdalnie." -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Status repozytorium zdalnej bazy Entropy" +msgid "available queries" +msgstr "dostępne" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Host" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Rewizja" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/query.py:59 #, fuzzy -msgid "Local revision currently at" -msgstr "Bieżąca lokalna wersja bazy danych -" +msgid "search package tags" +msgstr "przeszukaj dostępne zestawy pakietów" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "wybierz gałąź, na której należy pracować" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "funkcje obsługi repozytorium pakietów" +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "włącz podane repozytorium" -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "zsynchronizuj repozytoria pakietów przez podstawowe serwery lustrzane" +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Nazwa hosta" -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "funkcje obsługi repozytorium" +#: ../../server/eit/commands/query.py:72 +#, fuzzy +msgid "show libraries (.so) required by matched packages" +msgstr "To są dopasowane pakiety" -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "Interfejs GPG załadowany, katalog domowy" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "Importowanie pary kluczy dla repozytorium" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "Para kluczy już istnieje dla repozytorium" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "Zaimportowano klucz GPG z odciskiem palca" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Teraz powinieneś podpisywać tym wszystkie pakiety" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "Eksportowanie prywatnego klucza dla repozytorium" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "Eksportowanie publicznego klucza dla repozytorium" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "Para kluczy niedostępna dla repozytorium" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "Para kluczy STRACIŁA WAŻNOŚĆ dla repozytorium" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "Nie można wyeksportować klucza GPG dla repozytorium" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "Eksportowano klucz GPG dla repozytorium" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "Tworzenie kluczy dla repozytorium" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "Inny klucz już istnieje dla repozytorium" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "Wpisz e-mail" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "Wpisz liczbę dni do wygaśnięcia ważności (0 = nie wygasa)" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "Wpisz długie hasło (puste = brak)" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "Tworzenie pary kluczy GPG dla repozytorium" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "Utworzono klucz GPG z odciskiem palca" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" msgstr "" -"Koniecznie upewnij się, że wygenerowałeś klucz unieważniający i " -"przechowujesz go w bardzo bezpiecznym miejscu." +"pokaż drzewo odwrotnych zależności dla podanych atomów możliwych do " +"instalacji" -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "Możesz wysłać swoje klucze na serwer kluczy" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "Usuwanie kluczy z repozytorium" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "Nie ma dostępnych kluczy dla podanego repozytorium" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "Czy rzeczywiście jesteś pewien?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "Metadane kluczy niedostępne dla" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "Usunięto klucz GPG z odciskiem palca" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "Informacje GPG dla repozytorium" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "Identyfikator klucza publicznego" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "Odcisk palca klucza publicznego" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Rozmiar klucza" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Data utworzenia" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Traci ważność dnia" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "nie podano pakietów." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Włączanie" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Włączono" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "już włączone" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Wyłączanie" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Wyłączono" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "już wyłączone" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "Zła składnia." - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "Nie podano prawidłowych repozytoriów." - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Nie można dopasować" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "Nie wybrano pakietów." - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "zależności pakietu" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Bez zależności" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Rodzaj zależności" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Wybierz rodzaj zależności dla" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Edytor zależności" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Potwierdzasz?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "zależności pomyślnie zaktualizowane" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "Maskowanie" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "Odmaskowanie" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Dopasowywanie pakietów do usunięcia" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Za mało argumentów" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "To są pakiety, które zostaną usunięte z bazy danych" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Usuwanie wybranych pakietów" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Usunięto pakiety. Aby usunąć binarne pakiety, uruchom aktywator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Wyszukiwanie wstrzykniętych pakietów do usunięcia" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "To są wstrzyknięte pakiety zebrane do usunięcia" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" -"Przełączanie gałęzi, upewnij się, że twoje pakiety są zsynchronizowane." - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Zbieranie pakietów, które mają być zaznaczone" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Te są pakiety, które mają być zaznaczone" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Nie podano prawidłowych repozytoriów." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Podano nieprawidłowe repozytoria." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Repozytorium Entropy zostało zainicjowane." - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Tworzenie pustej bazy danych w" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Nie można nadpisać pliku, który już istnieje" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Brak prawidłowych pakietów do aktualizacji." +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" +msgstr "nie dołączaj zależności wstecznych" -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Skanowanie bazy danych za różnicami" +#: ../../server/eit/commands/query.py:102 +#, fuzzy +msgid "search through package sets" +msgstr "przeszukaj dostępne zestawy pakietów" -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Nieprawidłowy atom" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Ni ma nicz do zrobbbienja" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nazwa zbioru pakietów" -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "To są pakiety, których status ma być zmieniony na wstrzyknięte" +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "przeszukaj pakiety ze względu na opis" -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Czy chciałbyś teraz dokonać transformacji?" +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informacje reopzytorium" -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformowanie z bazy danych" +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Opis pakietu" -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Transformowanie bazy danych zakończone" +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Nic nie znaleziono" -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "przestarzałe" +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "biblioteki" -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Więc, kochany, które pakiety chcesz usunąć?" +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" +msgstr "" -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Usunąć tę paczkę?" +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "nie znaleziono użytkownika" -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Więc, kochany, które pakiety chcesz dodać?" +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Nie znaleziono pakietów" -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Dodać ten pakiet?" +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "Wykonywanie aktualizacji metadanych pakietów" -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "To są pakiety, które mają być dodane/zaktualizowane" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "ostrzeżenie" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Czy chcesz je teraz spaczkować?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "w" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Kompresowanie pakietów" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Ignorowanie uszkodzonego wpisu SPM, proszę to zrekompilowac" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Nic do zrobienia, sprawdź później." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Obsłużone elementy" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "lokalna wersja" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "przechowywane pakiety" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "wysłane pakiety" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "podpisane pakiety" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "dodane" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "przełączanie" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"To są pakiety, które się pojawiły - dostępne do aktualizacji lub " -"niezainstalowane" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Nie znaleziono zestawów pakietów" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "zestaw pakietów nie został znaleziony" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Nic nie znaleziono" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "pokaż status repozytoriów" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Nie podano pakietów jądra" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "wypisz zainstalowane pakiety" + +#: ../../server/eit/commands/list.py:80 +#, fuzzy +msgid "not available" +msgstr "Niedostępne" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "brak pakietów" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "szukaj pakietów w repozytoriach" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "szukaj pakietów w repozytoriach" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Repozytorium Entropy zostało zainicjowane." + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Bieżące repozytorium" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "indeksowanie repozytorium" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "zależności pakietu" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "przesuń pakiety z jednego repozytorium do innego" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nazwa zbioru pakietów" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Nic nie znaleziono" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "nie jest wyszczególniony w repozytorium!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "błąd gniazda" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "nieprawidłowa wersja repozytorium" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "pokaż status repozytoriów" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "przesuń pakiety z jednego repozytorium do innego" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "ta pomoc" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "usuń repozytorium" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Pomijanie repozytorium" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Wersja repozytorium" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "zsynchronizuj wszystkie skonfigurowane repozytoria" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "zarządzanie repozytorium" + +#: ../../server/eit/commands/push.py:146 +#, fuzzy +msgid "Commit message" +msgstr "Komunikat błędu" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Proszę wpisać commit message" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Status repozytorium zdalnej bazy Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Host" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "zdalne" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "lokalne" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Przerwanie!" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Wygeneruj informacje logowania" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Pokaż dostępne programy" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Dodaj powiadomienie" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Usuń powiadomienie" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Powiadomienia" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Wpisz URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Wybierz ten, który chcesz usunąć" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Czy jesteś pewien, że chcesz to usunąć?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Wyjdź/dokonaj zmian" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Weź powiadomienie repozytorium" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "ścieżka repozytorium" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "pracowanie na repozytorium" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "włącz podane repozytorium" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "zainstalowane repozytorium pakietów" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Usuwanie wybranych pakietów" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Nie można dopasować" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Brak prawidłowych pakietów do aktualizacji." + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Skanowanie bazy danych za różnicami" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Instalowanie pakietu" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Ni ma nicz do zrobbbienja" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "został wstrzyknięty" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformowanie z bazy danych" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Transformowanie bazy danych zakończone" +msgid "Action completed" +msgstr "wstrzykiwanie zakończone" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "przestarzałe" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Więc, kochany, które pakiety chcesz usunąć?" +msgid "Select packages for removal" +msgstr "Wyszukiwanie wstrzykniętych pakietów do usunięcia" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Usunąć tę paczkę?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Dopasowania do usunięcia z bazy danych repozytorium" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Więc, kochany, które pakiety chcesz dodać?" +msgid "Select packages to add" +msgstr "Niektóre pakiety są zamaskowane" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Dodać ten pakiet?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Będą dodane do systemowej bazy danych" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "ostrzeżenie" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Czy chcesz je teraz spaczkować?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "w" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Kompresowanie pakietów" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Ignorowanie uszkodzonego wpisu SPM, proszę to zrekompilowac" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Nic do zrobienia, sprawdź później." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Obsłużone elementy" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "zainstalowane repozytorium pakietów" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "nie jest dostępne" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "pracowanie na repozytorium" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "dopasuj pakiet w repozytoriach" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "włącz podane repozytorium" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Błąd repozytorium podczas usuwania pakietu" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "pokaż statystyki bieżących blokad" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Tabela statusu serwerów lustrzanych" + +#: ../../server/eit/commands/lock.py:110 +msgid "server" +msgstr "" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Do repozytorium" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "Na repozytorium" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"dołącz pakiety systemowe, zależności do zbudowania elementu oraz informacje " +"o zapętleniach" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "" +"pokaż drzewo odwrotnych zależności dla podanych atomów możliwych do " +"instalacji" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Obliczanie dostępnych pakietów dla" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "" +"Usuwanie niedostępnych pakietów; pomijanie domyślnego ustawienia Entropy " +"jest generalnie złe." + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "" +"Użytkownicy ze starymi repozytoriami nie będą w stanie znaleźć plików " +"pakietów zdalnie." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Obliczanie dostępnych pakietów dla" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "zapisane pliki" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "pokaż pliki należące do podanych atomów" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "włącz podane repozytorium" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "nie dołączaj zależności wstecznych" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "przesuń pakiety z jednego repozytorium do innego" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "zależności pakietu" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Bez zależności" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Rodzaj zależności" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Wybierz rodzaj zależności dla" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Edytor zależności" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Potwierdzasz?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "zależności pomyślnie zaktualizowane" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "zainstalowane repozytorium pakietów" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "zależności pakietu" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Konfigurowanie pakietu" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "skopiuj pakiety z jednego repozytorium do innego" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Rozpakowywanie pakietu zależnego" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "wymuś operację" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "utwórz parę kluczy dla repozytoriów i podpisz pakiety" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "usuń parę kluczy (i cyfrowe podpisy) z repozytorium" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "Para kluczy niedostępna dla repozytorium" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"podpisz (albo podpisz ponownie) pakiety w repozytorium używając obecnie " +"ustawionej pary kluczy" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importuj parę kluczy, powiąż z podanym repozytorium" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Odcisk palca klucza publicznego" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "zdalne repozytorium nagle zostało zablokowane" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "Interfejs GPG załadowany, katalog domowy" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "Tworzenie kluczy dla repozytorium" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "Inny klucz już istnieje dla repozytorium" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "Wpisz e-mail" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "Wpisz liczbę dni do wygaśnięcia ważności (0 = nie wygasa)" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "Wpisz długie hasło (puste = brak)" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "Tworzenie pary kluczy GPG dla repozytorium" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "Utworzono klucz GPG z odciskiem palca" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Teraz powinieneś podpisywać tym wszystkie pakiety" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Koniecznie upewnij się, że wygenerowałeś klucz unieważniający i " +"przechowujesz go w bardzo bezpiecznym miejscu." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "Możesz wysłać swoje klucze na serwer kluczy" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "Usuwanie kluczy z repozytorium" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "Nie ma dostępnych kluczy dla podanego repozytorium" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "Czy rzeczywiście jesteś pewien?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "Metadane kluczy niedostępne dla" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "Usunięto klucz GPG z odciskiem palca" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "Informacje GPG dla repozytorium" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "Identyfikator klucza publicznego" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "Odcisk palca klucza publicznego" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Rozmiar klucza" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Data utworzenia" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Traci ważność dnia" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Importowanie pary kluczy dla repozytorium" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Para kluczy już istnieje dla repozytorium" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "Zaimportowano klucz GPG z odciskiem palca" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Teraz powinieneś podpisywać tym wszystkie pakiety" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "Eksportowanie prywatnego klucza dla repozytorium" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "Eksportowanie publicznego klucza dla repozytorium" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "Para kluczy niedostępna dla repozytorium" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "Para kluczy STRACIŁA WAŻNOŚĆ dla repozytorium" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "Nie można wyeksportować klucza GPG dla repozytorium" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "Eksportowano klucz GPG dla repozytorium" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "zarządzanie repozytorium" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Pakiety" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "katalog wysyłania" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "Nieobsługiwana usługa" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Instalowanie pakietu" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "szukaj pakietów w repozytoriach" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Nie można przełączyć na gałąź" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "gałąź" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Nieprawidłowy atom" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "zarządzanie repozytorium" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Bieżące repozytorium" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7232,112 +7193,118 @@ msgstr "Są niekompletne zbiory pakietów, kontynuacja na własne ryzyko" msgid "Application" msgstr "Program" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 msgid "Successfully logged in." msgstr "Zalogowano pomyślnie." -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "Nieobsługiwana usługa" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Głos pomyślnie zarejestrowany" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Błąd przy rejestrowaniu głosu" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 msgid "Already voted" msgstr "Już zagłosowano" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Programy" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Programy do usunięcia" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Programy, których wersja ma zostać cofnięta" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Programy do zainstalowania" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Programy do aktualizacji" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Programy do reinstalacji" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proponowane" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Cel" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rew." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "ID zw. z bezp." -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Nazwa programu" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Proszę czekać, ładowanie..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Rekomendacje bezpieczeństwa są ładowane" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Brak rekomendacji" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Brak elementów do pokazania" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nazwa pliku" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 msgid "Cannot disable repository!" msgstr "Nie można wyłączyć repozytorium!" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Aktywny" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Aktualizacja" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Rewizja" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identyfikator repozytorium" @@ -7751,6 +7718,10 @@ msgstr "Niektóre pakiety są zamaskowane" msgid "Masked package" msgstr "Zamaskowany pakiet" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Włączono" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Proszę potwierdzić operacje wymienione powyżej" @@ -9800,14 +9771,461 @@ msgstr "Magneto, aplet aktualizacji Entropy" msgid "_Load Package Manager" msgstr "Załaduj menadżera _pakietów" +#~ msgid "handles community-side features" +#~ msgstr "obsługuje funkcje związane ze społecznością" + +#~ msgid "community repositories management functions" +#~ msgstr "funkcje zarządzania repozytoriami społecznościowymi" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "skanuj system w poszukiwaniu nowo skompilowanych pakietów" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analizuj bezpośrednio katalog Entropy Store" + +#~ msgid "repackage the specified atoms" +#~ msgstr "spaczkuj ponownie podane atomy" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "nie pytaj o nic (poza krytycznymi rzeczami)" + +#~ msgid "manage only the specified atoms" +#~ msgstr "zarządzaj tylko podanymi atomami" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "uruchom w trybie interaktywnym (zadając kolejno pytania)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "dodaj binarne pakiety do repozytorium bez wpływania na zakres " +#~ "(multipakiety)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "" +#~ "funkcje zarządzania serwerami lustrzanymi dla repozytoriów " +#~ "społecznościowych" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "zsynchronizuj pakiety, bazę danych, oprócz tego zrób nieco porządku" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "zsynchronizuj pakiety przez podstawowe serwery lustrzane" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "zsynchronizuj bazę danych bieżącego repozytorium przez podstawowe serwery " +#~ "lustrzane" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "zablokuj bieżącą bazę danych repozytorium (po stronie serwera)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "odblokuj bieżącą bazę danych repozytorium (po stronie serwera)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "zablokuj bieżącą bazę danych repozytorium (po stronie klienta)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "odblokuj bieżącą bazę danych repozytorium (po stronie klienta)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "usuń binarne pakiety, których nie ma w repozytorium i są przestarzałe" + +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "" +#~ "usuń niedostępne pakiety z serwerów lustrzanych (podobne do tidy, ale " +#~ "bardziej \"nazi\")" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "zainicjuj (zainicjuj ponownie) bieżącą bazę danych repozytorium" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "" +#~ "nie wypełniaj bazy danych przy użyciu pakietów na serwerach lustrzanych" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "utwórz (utwórz ponownie) bazę danych dla określonego repozytorium" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "wymuś ręcznie podbicie wersji dla bieżącej bazy danych repozytorium" + +#~ msgid "synchronize the database" +#~ msgstr "zsynchronizuj bazę danych" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "usuń podane atomy z bieżącej bazy danych repozytorium" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "usuń podane wstrzyknięte atomy (wszystkie, jeśli nie podano żadnego)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "utwórz puste repozytorium w podanej ścieżce" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "przełącz na określoną gałąź dla podanych atomów (albo wszystkich)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "zweryfikuj zdalnie integralność podanych atomów (albo wszystkich)" + +#~ msgid "backup current repository database" +#~ msgstr "utwórz kopię bieżącej bazy danych repozytorium" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "przywróć utworzoną wcześniej bazę danych repozytorium" + +#~ msgid "enable the specified repository" +#~ msgstr "aktywuj określone repozytorium" + +#~ msgid "disable the specified repository" +#~ msgstr "dezaktywuj określone repozytorium" + +#~ msgid "show the current Server Interface status" +#~ msgstr "pokaż status bieżącego interfejsu serwera" + +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "sprawdź, czy pakiety w repozytorium mają niespełnione zależności" + +#~ msgid "handle packages dependencies" +#~ msgstr "obsłuż zależności pakietów" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "sklonuj pakiet do repozytorium i przypisz mu arbitralny tag" + +#~ msgid "pulls dependencies in" +#~ msgstr "uwzględnia też zależności" + +#~ msgid "set the default repository" +#~ msgstr "ustaw domyślne repozytorium" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "zarządzaj cyfrowymi podpisami (OpenGPG) dla repozytorium" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "pokaż informację o obecnie skonfigurowanych kluczach dla podanego " +#~ "repozytorium" + +#~ msgid "export public key of given repository" +#~ msgstr "eksportuj klucz publiczny dla podanego repozytorium" + +#~ msgid "export private key of given repository" +#~ msgstr "eksportuj klucz prywatny dla podanego repozytorium" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "przeszukaj bazy danych repozytoriów społecznościowych" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "pokaż, do jakiego pakietu należą podane pliki" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "pokaż, jakie pakiety zależą od podanych atomów" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "wypisz wszystkie pakiety w domyślnym repozytorium" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "szukaj pakietów w bazie danych domyślnego repozytorium" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "pokaż pakiety, które posiadają podane tagi" + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "pokaż zainstalowane pakiety, które posiadają określone wersje" + +#~ msgid "source package manager functions" +#~ msgstr "funkcje menadżera pakietów źródłowych" + +#~ msgid "compilation function" +#~ msgstr "funkcja kompilacji" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "skompiluj pakiety, które należą do podanych kategorii" + +#~ msgid "just list packages" +#~ msgstr "tylko wypisz pakiety" + +#~ msgid "do not pull old package slots" +#~ msgstr "nie uwzględniaj starych slotów pakietów" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "skompiluj pakiety w podanych zestawach pakietów" + +#~ msgid "rebuild everything" +#~ msgstr "przebuduj wszystko" + +#~ msgid "run database update if all went fine" +#~ msgstr "" +#~ "wykonaj aktualizację bazy danych, jeśli wszystko przebiegło pomyślnie" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "" +#~ "uruchom synchronizację serwerów lustrzanych, jeśli wszystko przebiegło " +#~ "pomyślnie" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "skanuj za osieroconymi pakietami SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "funkcje obsługi powiadomień" + +#~ msgid "add a news item to the notice board" +#~ msgstr "dodaj wiadomość do powiadomień" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "usuń wiadomość z powiadomień" + +#~ msgid "read the current notice board" +#~ msgstr "przeczytaj bieżące powiadomienia" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "poszukaj niespełnionych zależności w repozytoriach społecznościowych" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "zweryfikuj integralność lokalnych plików pakietów" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Trzeba zainstalować sys-apps/entropy-server. :-) Zrób to!" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Trzeba zainstalować/zaktualizować sys-apps/entropy-server. :-) Zrób to!" + +#~ msgid "show current repositories status" +#~ msgstr "pokaż status bieżących repozytoriów" + +#~ msgid "do some searches into repository databases" +#~ msgstr "przeszukaj bazy danych repozytorium" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "dopasuj zależność pakietu w bazie domyślnego repozytorium" + +#~ msgid "(re)initialize the current repository" +#~ msgstr "zainicjuj (zainicjuj ponownie) bieżące repozytorium" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "przełącz na określoną gałąź w repozytorium" + +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "zweryfikuj zdalnie integralność podanych atomów" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "sklonuj pakiet i przypisz mu arbitralny tag" + +#~ msgid "mask given package in given repository" +#~ msgstr "zamaskuj podany pakiet w podanym repozytorium" + +#~ msgid "unmask given packages in given repository" +#~ msgstr "odmaskuj podany pakiet w podanym repozytorium" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "skanuj za osieroconymi pakietami w SPM" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "skanuj za nowymi pakietami dostępnymi w SPM" + +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "poszukaj brakujących bibliotek (skanuj system)" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "usuń pobrane pakiety i wyczyść katalogi tymczasowe" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Rozpoczynanie synchronizacji danych pomiędzy serwerami lustrzanymi " +#~ "(pakiety/baza danych)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Czy kontynuować z procedurą tidy?" + +#~ msgid "Notice text" +#~ msgstr "Tekst powiadomienia" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "Stosowny URL (opcjonalnie)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Powiadomienia repozytorium, dodawanie nowego wpisu" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Rozpoczynanie blokowania baz danych serwerów lustrzanych" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Pojawił się problem na co najmniej jednym serwerze lustrzanym" + +#~ msgid "Repositories lock complete" +#~ msgstr "Blokowanie repozytoriów ukończone" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Rozpoczynanie odblokowania baz danych serwerów lustrzanych" + +#~ msgid "Repositories unlock complete" +#~ msgstr "Odblokowanie repozytoriów ukończone" + +#, fuzzy +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Rozpoczynanie blokowania baz danych serwerów lustrzanych pobierania" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Blokada serwerów lustrzanych pobierania zakończona" + +#, fuzzy +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "Rozpoczynanie odblokowania baz danych serwerów lustrzanych pobierania" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Odblokowanie serwerów lustrzanych pobierania zakończone" + +#~ msgid "Syncing repository" +#~ msgstr "Synchronizowanie repozytorium" + +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Błąd przy synchronizowaniu baz danych, nie można kontynuować." + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Bieżąca lokalna wersja bazy danych -" + +#~ msgid "choose on what branch operating" +#~ msgstr "wybierz gałąź, na której należy pracować" + +#~ msgid "package repositories handling functions" +#~ msgstr "funkcje obsługi repozytorium pakietów" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "" +#~ "zsynchronizuj repozytoria pakietów przez podstawowe serwery lustrzane" + +#~ msgid "repository handling functions" +#~ msgstr "funkcje obsługi repozytorium" + +#~ msgid "no package specified." +#~ msgstr "nie podano pakietów." + +#~ msgid "Enabling" +#~ msgstr "Włączanie" + +#~ msgid "already enabled" +#~ msgstr "już włączone" + +#~ msgid "Disabling" +#~ msgstr "Wyłączanie" + +#~ msgid "Disabled" +#~ msgstr "Wyłączono" + +#~ msgid "already disabled" +#~ msgstr "już wyłączone" + +#~ msgid "Invalid syntax." +#~ msgstr "Zła składnia." + +#~ msgid "No valid repository specified." +#~ msgstr "Nie podano prawidłowych repozytoriów." + +#~ msgid "No packages selected." +#~ msgstr "Nie wybrano pakietów." + +#~ msgid "Masking" +#~ msgstr "Maskowanie" + +#~ msgid "Unmasking" +#~ msgstr "Odmaskowanie" + +#~ msgid "Matching packages to remove" +#~ msgstr "Dopasowywanie pakietów do usunięcia" + +#~ msgid "Not enough parameters" +#~ msgstr "Za mało argumentów" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "To są pakiety, które zostaną usunięte z bazy danych" + +#~ msgid "Removing selected packages" +#~ msgstr "Usuwanie wybranych pakietów" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "Usunięto pakiety. Aby usunąć binarne pakiety, uruchom aktywator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "To są wstrzyknięte pakiety zebrane do usunięcia" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "Przełączanie gałęzi, upewnij się, że twoje pakiety są zsynchronizowane." + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Zbieranie pakietów, które mają być zaznaczone" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Te są pakiety, które mają być zaznaczone" + +#~ msgid "No valid repositories specified." +#~ msgstr "Nie podano prawidłowych repozytoriów." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Podano nieprawidłowe repozytoria." + +#~ msgid "Creating empty database to" +#~ msgstr "Tworzenie pustej bazy danych w" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Nie można nadpisać pliku, który już istnieje" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "To są pakiety, których status ma być zmieniony na wstrzyknięte" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Czy chciałbyś teraz dokonać transformacji?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformowanie z bazy danych" + +#~ msgid "Database transform complete" +#~ msgstr "Transformowanie bazy danych zakończone" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Więc, kochany, które pakiety chcesz usunąć?" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Więc, kochany, które pakiety chcesz dodać?" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "To są pakiety, które mają być dodane/zaktualizowane" + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "To są pakiety, które się pojawiły - dostępne do aktualizacji lub " +#~ "niezainstalowane" + +#~ msgid "No package sets found" +#~ msgstr "Nie znaleziono zestawów pakietów" + +#~ msgid "package set not found" +#~ msgstr "zestaw pakietów nie został znaleziony" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Transformowanie bazy danych zakończone" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Więc, kochany, które pakiety chcesz usunąć?" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Więc, kochany, które pakiety chcesz dodać?" + #~ msgid "Entropy Server interface must be run as root" #~ msgstr "" #~ "Interfejs serwera Entropy musi zostać uruchomiony przez użytkownika root" -#, fuzzy -#~ msgid "reset error" -#~ msgstr "błąd gniazda" - #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Nie można uzyskać blokady zasobów Entropy." @@ -10003,9 +10421,6 @@ msgstr "Załaduj menadżera _pakietów" #~ msgid "empty username" #~ msgstr "pusta nazwa użytkownika" -#~ msgid "user not found" -#~ msgstr "nie znaleziono użytkownika" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "musisz się zalogować na stronie, żeby zaktualizować format swojego hasła" @@ -10289,9 +10704,6 @@ msgstr "Załaduj menadżera _pakietów" #~ msgid "From repository" #~ msgstr "Z repozytorium" -#~ msgid "To repository" -#~ msgstr "Do repozytorium" - #~ msgid "Copy instead of move?" #~ msgstr "Skopiować zamiast przenosić?" @@ -10343,27 +10755,15 @@ msgstr "Załaduj menadżera _pakietów" #~ msgid "Check mode" #~ msgstr "Typ sprawdzania" -#~ msgid "Get repository notice board" -#~ msgstr "Weź powiadomienie repozytorium" - -#~ msgid "Remove notice board entry" -#~ msgstr "Usuń powiadomienie" - #~ msgid "Entry Identifiers" #~ msgstr "Identyfikator powiadomienia" -#~ msgid "Add notice board entry" -#~ msgstr "Dodaj powiadomienie" - #~ msgid "Notice link" #~ msgstr "Odsyłacz" #~ msgid "EAPI3 Service status" #~ msgstr "Status usługi EAPI3" -#~ msgid "remote repository suddenly locked" -#~ msgstr "zdalne repozytorium nagle zostało zablokowane" - #~ msgid "EAPI3 Service" #~ msgstr "Usługa EAPI3" diff --git a/misc/po/pt.po b/misc/po/pt.po index 45fc91a4e..38338757d 100644 --- a/misc/po/pt.po +++ b/misc/po/pt.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2011-08-02 09:58-0300 \n" "Last-Translator: albfneto \n" "Language-Team: Lucas Azevedo \n" @@ -12,36 +12,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Portuguese\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Sincronizando base de dados atual" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "espere, por favor" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Removendo entrada" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Adicionando entrada" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Exportando tabela da base de dados" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Exportação da Base de Dados completada." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -50,19 +50,19 @@ msgstr "Exportação da Base de Dados completada." msgid "ATTENTION" msgstr "ATENÇÃO" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "Ocorreu erro Spm" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "Identificador único Spm não encontrado" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "Atualizando repositório de Metadados, por favor espere!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "Gerando Bibliotecas de Metadados, por favor espere!" @@ -237,16 +237,16 @@ msgstr "Recarregando módulos do Portage" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "erro" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "não encontrado" @@ -295,7 +295,7 @@ msgstr "Não foi possível executar configuração SPM para" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -356,7 +356,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "O arquivo doa pacotes SPM instalados não atualizou" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -391,7 +391,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "não existe" @@ -430,7 +430,7 @@ msgid "Error calculating dependencies" msgstr "Erro ao calcular dependências" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "não suportado" @@ -492,460 +492,460 @@ msgstr "conectando ao espelho" msgid "setting directory to" msgstr "mudando diretório para" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Interface de Espelhos do Entropy Server carregada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 msgid "repository mirror" msgstr "repositório ou espelho" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 msgid "packages mirror" msgstr "Espelho dos pacotes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "buscando arquivo no espelho" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "destrancando" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "trancando" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "espelho" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "espelho já foi trancado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "espelho já foi destrancado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "espelho para recebimento de arquivos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "espelho já trancado para recebimento de arquivos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "espelho já destrancado para recebimento de arquivos" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "para recebimento" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "espelho trancado com sucesso" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "espelho não trancado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "espelho destrancado com sucesso" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "erro ao destrancar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "espelho não destrancado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "conectando para receber pacote" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "recebendo pacote" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "pacote" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "não está listado no repositório!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "verificando soma de checagem do pacote" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "recebido com sucesso" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "soma de checagem não corresponde. recebendo novamente..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "parece estar quebrado. Considere re-empacotá-lo. Desistindo!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "espelho não tem arquivo de revisão de base de dados válido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "incapaz de receber revisão do repositório" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "espelho não tem um arquivo de revisão válido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "esperando até 2 minutos antes de desistir" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "espelho destrancado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Estatísticas locais" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "enviar diretório" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "arquivos prontos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "diretório de pacotes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "envio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "recebimento" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "copiar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "remover" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Pacotes à serem removidos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Pacotes à serem movidos localmente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Pacotes à serem enviados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Tamanho total de remoção" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Tamanho total de envio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Tamanho total de recebimento" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Estatísticas remotas para" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "pacotes remotos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "arquivos armazenados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Calculando filas" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "removendo pacote+hash" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "sincronizar" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "remoção completa" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "copiando arquivo+hash para o repositório" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "erros no envio" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "razão" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "envio completado com sucesso" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "erros de recebimento" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "recebimento completado com sucesso" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA checando arquivo de pacote" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "arquivo de pacote com falhas, por favor conserte" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "iniciando sincronização de pacotes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "sincronização de pacotes" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "erro no socket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "em" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "nada para fazer em" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Expandindo filas" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "nada para sincronizar para" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Você gostaria de executar os passos acima?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Não" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "interrupção de teclado!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "você deve empacotá-los de novo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "exceção capturada" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "pelo menos um espelho sincronizou devidamente!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "arrumado" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "coletando pacotes expirados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "coletando pacotes expirados nos galhos selecionados" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "nada para remover neste galho" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "estes são os pacotes expirados" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Você deseja continuar?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "removendo pacotes remotamente" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "remover erros" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "removendo pacotes localmente" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "removido" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "recebendo quadro de avisos dos espelhos para" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "quadro de avisos recebido com sucesso de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "removendo quadro de avisos de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "envio de quadro de avisos falhou em" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "sucesso no envio de quadro de avisos" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "enviando quadro de avisos de" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "envio de quadro de avisos falhou em" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "sucesso no envio de quadro de avisos" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "As chaves do repositório expiraram" @@ -958,8 +958,8 @@ msgid "download path" msgstr "diretório para recebimento" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "erros" @@ -967,259 +967,271 @@ msgstr "erros" msgid "failed to download from mirror" msgstr "falha ao receber do espelho" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 msgid "failed to unpack" msgstr "Incapaz de desempacotar" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "problemas com treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Colidindo dados antigos de volta" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "conjuntos de pacotes configurados" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Nenhum configurado" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "criando despejo da base de dados compactada + soma de checagem" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 msgid "repository path" msgstr "caminho do repositório" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "despejar light" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "despejar soma de checagem light" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "abridor" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "compactando base de dados + soma de checagem" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 msgid "compressed repository path" msgstr "caminho de repositório compactado" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 msgid "repository checksum" msgstr "Soma de checagem do repositório" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "soma de checagem compactada" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "preparando repositório descompactado para o envio" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "EAPI desabilitada" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "preparando para enviar repositório para o espelho" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "envio falhou, trancar e continuar" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 msgid "repository already in sync" msgstr "repositório sincronizado" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 msgid "repository sync failed" msgstr "sincronização do repositório falhou" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "problemas no recebimento" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 msgid "repository sync forbidden" msgstr "sincronização de repositório não permitida" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 msgid "missing package sets" msgstr "faltando conjuntos de pacotes" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 msgid "dependencies test reported errors" msgstr "teste de dependências reportou erros" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 msgid "these packages haven't been removed yet" msgstr "Estes pacotes não puderam ser removidos, porém" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "enviar problemas" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 msgid "repository sync completed successfully" msgstr "sincronização da base de dados completada com sucesso" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "Espelhos não foram destrancados. Lembre de sincronizá-los." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "não foi possível estocar cache RSS das atualizações" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJETAR" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "foi injetado" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "executar quickpkg manualmente para atualizar bd embebida" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 msgid "Repository updated anyway" msgstr "De qualquer forma, Base de dados do repositório atualizada" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "O pacote não tem Palavra-Chave, ele será mascarado !" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "repositório não configurado" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "id de repositório protegida, não posso usar isso, me desculpe..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 msgid "invalid repository revision" msgstr "Revisão do repositório inválida" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "padronizando para 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repositório" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "sincronizando conjuntos de pacotes " -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "não é possível comparar" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 msgid "initializing repository" msgstr "Inicializando repositório" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "Você quer inicializar seu repositório padrão?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "tag especificada é inválida " -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "despejando de volta os pacotes selecionados dos ramos" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "nada para fazer" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "estes são os pacotes que vão ser despejados" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "checando hash do pacote" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "hash não corresponde para" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "md5 errado" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "erro ao receber pacotes dos espelhos" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "trabalhando no branch" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "atualizando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "pacote despejado" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 msgid "Cannot touch system repository" msgstr "Não foi possível criar a base de dados do sistema" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Preparando para mover pacotes selecionados para" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Preparando para copiar pacotes selecionados para" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Nota" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1227,427 +1239,426 @@ msgstr "" "todos pacotes antigos com escopo de conflito vão ser removidos do " "repositório destinatário à menos que injetados" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "nova tag" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "Dependências reversas" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "dependência" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "trocando" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "não é possível trocar, pacote não encontrado, pulando" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "movendo arquivo" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "carregando dados do repositório de origem" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "Chave GPG não disponível em " -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "injetando dados ao diretório de destino" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 msgid "removing entry from source repository" msgstr "removendo entrada da base de dados de origem" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "atom tratado com sucesso" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Injetando metadados do entropy nos pacotes construídos" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "As infraestruturas do lFYI e/ou do GPG falharam ao serem carregadas" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "injetando metadados do entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "injeção completa" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "removendo pacote" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Verificação de integridade dos pacotes selecionados" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Todos os pacotes no repositório vão ser checados." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Esta é a lista dos pacotes que vão ser checados" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Trabalhando com o espelho" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "checando hash" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "verificação do digest de " -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "NÃO está saudável" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Esta é a lista de pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Espelho" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Estatísticas" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Número de pacotes checados" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Número de pacotes saudáveis" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Número de pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "local" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "checando status de" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "está corrompido, soma de checagem foi armazenada" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "pacotes checados" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "pacotes saudáveis" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "pacotes quebrados" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "pacotes recebidos" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "recebimentos que falharam" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "assinalando o GPG dos pacotes para o repositório" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "Todos os pacotes faltando serão baixados." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG não disponível" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Chaves não disponíveis para" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "Assinando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Erro desconhecido ao assinar pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "Pacotes assinados" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "disponível" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "upload/ignorado" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Iniciando o recebimento de arquivos em falta" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Buscando arquivos em falta/quebrados em outro espelho" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Pacotes binários recebidos com sucesso." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "Estes são os pacotes que não puderam ser achados online" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Eles não vão ser checados" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Por favor altere seu branch para" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "e tente novamente" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "Copiando base de dados (se não existir)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Trocando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Ignorando" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "já está no branch" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "laço de migração completado" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Executando teste de pacotes SPM órfãos" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Escaneando pacote" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "não foi mais achado" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "String de pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Checando" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Executando teste de dependências" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Estas dependências não foram encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Requisitado por" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "por repositório" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Todas dependências foram satisfeitas. Tudo certo." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Lista de pacotes quebrados ou válidos" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Despejando resultados para o arquivo" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "Sistema está saldável" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Comparando bibliotecas com Spm, por favor espere" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Estes são os pacotes correspondentes" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Nenhum pacote correspondente" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Seu repositório padrão não está inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Você quer inicializar seu repositório padrão?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Continuando com um repositório não inicializado" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "Repositório do Entropy já foi trancado por você :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "Trancando e Sincronizando base de dados do Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Tabela de status dos espelhos" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Destrancado" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Trancado" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "não é possível trancar espelho" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 msgid "Repository is corrupted!" msgstr "Repositório corrompido!" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 msgid "indexing repository" msgstr "Indexando repositório" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "Inicializando uma base de dados vazia" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 msgid "Entropy repository file" msgstr "Arquivo repositório do Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "inicializado com sucesso" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "adicionado pacote" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "pacote adicionado" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "rev" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "dependências manuais para" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 msgid "these are the missing dependencies" msgstr "Estas dependências não foram encontradas" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 msgid "no missing dependencies !" msgstr "Não falta nenhuma dependência!" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 msgid "Do you agree?" msgstr "Você tem certeza ?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1655,143 +1666,144 @@ msgstr "Você tem certeza ?" msgid "Yes" msgstr "Sim" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Resolvendo metadados" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Trancamento das bases de dados completo" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Excessão capturada, fechando tarefas" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "repositório do servidor" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "repositório da comunidade" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Instância de Interface do Entropy Server no repositório" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "galho atual" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "tipo" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Repositórios atualmente configurados" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr " Chave GPG expirou" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "por favor, conserte" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "Erro inesperado no GPG" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "Saindo" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "arquivos de configuração" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "checando sistema" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "existem arquivos de configuração que ainda não foram atualizados" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "Encontradas dependências disponívels, re-escritas para este pacote" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "adicionado" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "Substituido(a)" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "Regras de dependências menos rígidas" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "Conjuntos (Sets)" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 msgid "updating package sets" msgstr "atualizando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 msgid "adding package set" msgstr "adicionando pacotes" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 msgid "removing package set" msgstr "removendo pacotes" @@ -1871,8 +1883,7 @@ msgstr "Atualizando base de dados do sistema usando repositório" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repositório" @@ -2262,7 +2273,7 @@ msgstr "Obtendo Vários Pacotes" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "pacotes" @@ -2320,16 +2331,8 @@ msgstr "Configurando" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Outra instância do Entropy está em execução. " @@ -2661,7 +2664,7 @@ msgstr "Repositórios copiados com sucesso." #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Tudo certo" @@ -2941,76 +2944,76 @@ msgstr "verificação de sumário falhou, tente novamente mais tarde" msgid "installing" msgstr "instalando" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Executando teste de dependências" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Postando dependência" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "Dependência adicionada pelo Grerenciamento" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Construindo dependência" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "Repositório de Cliente Corrompido. Por favor restaure uma cópia de segurança." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "razão não disponível" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask do usuário" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "palavras-chave do sistema" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask do usuário" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "package.keywords do repositório do usuário (todos pacotes)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "package.keywords do repositório do usuário" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords do usuário" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "completamente mascarado (por palavra-chave?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "package.db.mask geral do repositório" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "package.db.keywords geral do repositório" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "license.mask do usuário" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "live unmask do usuário" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "live mask do usuário" @@ -3019,87 +3022,87 @@ msgstr "live mask do usuário" msgid "Entropy needs your attention" msgstr "Entropy precisa de sua atenção" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy tem uma pergunta para você" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Interrompido" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Escolha número" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Por favor, escolha uma opção" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Descartar tudo" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Confirmar" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Adicionar item" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Editar item" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Remover item" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Mostrar lista atual" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Sua escolha (digite um número e aperte enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Você não digitou um número." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Ação inválida." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "Cadeia de caracteres a adicionar (-1 para retornar):" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Cadeia de caracteres inválida." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "Número do elemento para editar (-1 para retornar):" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "obsoleto(a)" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "novo valor:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Elemento inválido." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "Número do elemento para remover (-1 para retornar)" @@ -3258,16 +3261,18 @@ msgstr "Identificador GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Título" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3389,7 +3394,6 @@ msgstr "Você não é" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Parâmetros errados" @@ -3439,7 +3443,7 @@ msgid "Error while creating package for" msgstr "Erro ao criar arquivo para" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Não é possível continuar" @@ -3564,7 +3568,7 @@ msgstr "repositório não disponível" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Palavras-Chave" @@ -3576,7 +3580,7 @@ msgstr "Palavras-Chave" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Encontrado" @@ -3587,7 +3591,6 @@ msgstr "Encontrado" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "entradas" @@ -3617,8 +3620,8 @@ msgstr "" "pacotes colocados como dependências em níveis mais altos (circularidade)" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3765,8 +3768,9 @@ msgstr "Busca por Remoção" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Pacotes não encontrados" @@ -3826,7 +3830,7 @@ msgstr "Busca por Slot" msgid "Package Set Search" msgstr "Busca por Conjunto de Pacotes" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Busca por Tag" @@ -3903,7 +3907,7 @@ msgstr "Receber" msgid "Checksum" msgstr "Soma de Checagem" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Dependências" @@ -4010,7 +4014,7 @@ msgid "repository already enabled" msgstr "repositório já habilitado" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "repositório indisponível" @@ -4075,7 +4079,7 @@ msgstr "ativo" msgid "never synced" msgstr "nunca sincronizado" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Status" @@ -4126,24 +4130,25 @@ msgstr "Nenhum repositório especificado em" msgid "Unhandled exception" msgstr "Exceção não tratada" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Quadro de Notícias não disponível" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Conteúdo" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Link" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Pressione Enter para continuar" @@ -4153,7 +4158,8 @@ msgstr "Pressione Enter para continuar" msgid "Exit" msgstr "Sair" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Digite o identificador para escolher um" @@ -4163,7 +4169,7 @@ msgid "Notice board" msgstr "Quadro de Notícias" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Vocẽ não é root" @@ -4185,8 +4191,7 @@ msgid "Type a number." msgstr "Digite um número." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Arquivo de configuração" @@ -4306,7 +4311,7 @@ msgid "Unique files that would be automerged" msgstr "Arquivos únicos que seriam mesclados automaticamente" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Repositório inválido" @@ -4323,7 +4328,7 @@ msgstr "Já está autenticado como" msgid "Please logout first" msgstr "Por favor desautentique primeiro" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4331,7 +4336,7 @@ msgstr "Por favor desautentique primeiro" msgid "Username" msgstr "Nome de usuário" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4339,7 +4344,7 @@ msgstr "Nome de usuário" msgid "Password" msgstr "Senha" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4350,7 +4355,7 @@ msgstr "Por favor autentique-se em" msgid "Login aborted. Not logged in." msgstr "Autenticação abortada. Não foi autenticado." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4555,7 +4560,7 @@ msgid "Installed packages database not available" msgstr "Base de dados de pacotes instalados não disponível" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "obsoleto, por favor, use" @@ -4571,15 +4576,15 @@ msgstr "Base de Dados do Sistema foi limpa profundamente" msgid "No System Databases found" msgstr "Nenhuma Base de Dados de Sistema encontrada" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Nenhuma cópia de segurança da base de dados foi encontrada" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Selecione a base de dados que você quer restaurar" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" "Entropy instalou a ferramenta de restauração de base de dados de pacotes" @@ -4865,28 +4870,23 @@ msgstr "Beleza, eu desisto, você não tem jeito" msgid "Go to hell." msgstr "Vá pro inferno." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Opções Básicas" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "esta saída" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "imprimir versão" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "desabilitar saída colorida" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 msgid "force colorized output" msgstr "forçar saída colorida" @@ -4894,8 +4894,7 @@ msgstr "forçar saída colorida" msgid "print a bash completion script to stdout" msgstr "imprimir script do interpretador de comandos para o stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Opções de Aplicação" @@ -4948,7 +4947,7 @@ msgstr "leitor de quadro de avisos de repositório" msgid "show respositories status" msgstr "mostrar status dos repositórios" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "buscar pacotes nos repositórios" @@ -4987,8 +4986,7 @@ msgstr "atualizar sistema com os últimos pacotes disponíveis" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "perguntar antes de realizar quaisquer mudanças" @@ -4996,8 +4994,7 @@ msgstr "perguntar antes de realizar quaisquer mudanças" msgid "just download packages" msgstr "apenas receber arquivos" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "apenas mostrar o que seria feito" @@ -5176,7 +5173,7 @@ msgstr "desmascarar um ou mais pacotes" msgid "configure one or more installed packages" msgstr "configurar um ou mais pacotes instalados" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "procurar dependências não satisfeitas" @@ -5192,7 +5189,7 @@ msgstr "organizar pacotes por espaço em disco" msgid "look for missing libraries" msgstr "procurar por bibliotecas em falta" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "adicionando resultados aos arquivos" @@ -5220,7 +5217,7 @@ msgstr "realizar buscas variadas no repositório e nas bases de dados locais" msgid "search from what package a file belongs" msgstr "procurar por qual pacote um arquivo pertence" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "mostrar log de mudanças dos pacotes" @@ -5228,13 +5225,11 @@ msgstr "mostrar log de mudanças dos pacotes" msgid "search what packages depend on the provided atoms" msgstr "procurar por quais pacotes dependem dos atoms fornecidos" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "procurar por pacote pela descrição" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "mostrar arquivos pussuídos pelos atoms fornecidos" @@ -5275,8 +5270,7 @@ msgstr "procurar entre os pacotes instalados" msgid "associate given file paths to applications able to read them" msgstr "associa os caminhos dados às aplicações capazes de lê-los" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" "mostrar bibliotecas de tempo de execução necessárias para os atoms fornecidos" @@ -5293,8 +5287,7 @@ msgstr "mostrar a árvore de remoção para os atoms especificados" msgid "show atoms needing the provided libraries" msgstr "mostrar atoms que precisam das bibliotecas fornecidas" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "mostrar conjuntos de pacotes disponíveis" @@ -5306,27 +5299,24 @@ msgstr "mostrar pacotes que possuem os slots fornecidos" msgid "show packages owning the provided tags" msgstr "mostrar pacotes que possuem os rótulos fornecidos" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "Mostra árvore de dependências diretas aos átomos instaláveis" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" "inclue pacotes de sistema, monta dependências e informação de circularidade" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "mostrar árvore de dependências reversas para os átomos fornecidos" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "mostrar mais detalhes" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "imprimir resultados em modo que possa ser utilizado em scripts" @@ -5408,7 +5398,7 @@ msgstr "" "gerar base de dados de pacotes instalados usando arquivos do sistema [última " "esperança]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "reconstruir identificadores (SPM <-> pacotes Entropy)" @@ -5429,359 +5419,22 @@ msgstr "" "Entropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "trata características do lado da comunidade" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "funções de gerenciamento de repositórios da comunidade" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "escanear o sistema procurando por novos pacotes compilados" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "analizar o diretório de Armazenamento do Entropy diretamente" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "reempacotar os atoms especificados" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "não perguntar nada exceto coisas críticas" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "gerenciar apenas os atoms especificados" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "roda em modo interativo (pergunta as coisas, uma por uma)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"adicionar pacotes binários ao repositório sem afetar escopos (multipackages)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "funções de gerenciamento de espelhos de repositórios da comunidade" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "sincronizar pacotes, base de dados e também fazer uma limpeza" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "sincronizar todos os repositórios configurados" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "sincronizar pacotes através dos espelhos primários" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "verificar também integridade de pacotes" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" -"sincronizar a base de dados do repositório atual através dos espelhos " -"primários" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "trancar a base de dados do repositório atual (lado do servidor)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "destrancar a base de dados do repositório atual (lado do servidor)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "trancar a base de dados do repositório atual (lado do cliente)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "destrancar a base de dados do repositório atual (lado do cliente)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "mostrar o estado atual de trancamento" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" -"remover pacotes binários que não estejam em repositórios e os expirados" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "" -"limpando pacotes indisponíveis nos repositórios (semelhante ao Tidy, porém " -"mais rigoroso)" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "tempo para expirar (default é: 0,perigoso!)" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "gerenciar um repositório" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(re)inicializar a base de dados atual do repositório" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "não preencha a base de dados novamente utilizando pacotes em espelhos" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(re)criar a base de dados para o repositório especificado" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" -"forçar manualmente um empurrão de revisão para a base de dados atual do " -"repositório" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "sincronizar a base de dados" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" -"retornar despejo de pacotes de versões antigas de Sabayon na versão atual" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "remover os atoms fornecidos da base de dados atual do repositório" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"remover os atoms injetados fornecidos (todos se nenhum atom for fornecido)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "criar uma base de dados de repositório vazia no diretório fornecido" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "trocar os atoms fornecidos para o galho especificado (ou 'world')" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "verificar integridade remota dos atoms fornecidos (ou 'world')" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "gerar cópia de segurança para a base de dados atual do repositório" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" -"restaurar uma cópia de segurança da base de dados do repositório " -"anteriormente gerada" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "habilitar o repositório especificado" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "desabilitar o repositório especificado" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "mostrar o status atual da Interface de Servidor" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -msgid "check packages in repository for missing dependencies" -msgstr "checar pacotes do repositório, procurando se faltam dependências " - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "tratar dependências de pacotes" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"clonar um pacote dentro de um repositório atribuindo um rótulo arbitrário" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "mover pacotes de um repositório para outro" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "puxar dependências para dentro" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "copiar pacotes de um repositório para outro" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "definir o repositório padrão" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "manipula assinaturas dos repositórios digitais (OpenGPG)" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "criando par-chave para base de dados e assinando os pacotes" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "deleta" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" -"mostrar informações das chaves configuradas para os repositórios habilitados" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" -"assina (ou re-assina) pacotes no repositório, usando o conjunto par-chave " -"corrente" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "importar par-chave, ligar ao repositório habilitado" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exportar chave pública do repositório" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "exportar chave privada do repositório" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" -"realizar algumas buscas nas bases de dados de repositórios da comunidade" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "mostrar de qual pacote os arquivos forneidos pertencem" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "mostrar quais pacotes dependem dos atoms fornecidos" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "listar todos os pacotes no repositório padrão" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "buscar pacotes dentro da base de dados padrão do repositório" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "mostrar " - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "mostrar os pacotes instalados, com ênfase em suas revisões" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "funções do gerenciador de códigos-fonte de pacotes (SPM)" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "função de compilação" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "compilar pacotes pertencentes às categories fornecidas" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "apenas listar pacotes" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "não semear slots de pacotes obsoletos" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "compilar pacotes dos nomes conjuntos de pacotes fornecidos" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "reconstruir tudo" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "executar atualização da base de dados se tudo der certo" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "executar sincronização de espelho se tudo der certo" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "escanear pacotes órfãos no SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "funções de tratamento do quadro de notícias" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "adicionar um item de notícia ao quadro de notícias" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "remover um item de notícia ao quadro de notícias" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "ler o quadro de notícias atual" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" -"procurar por dependências não satisfeitas através dos repositórios de " -"comunidades" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "verificar a integridade dos arquivos locais de pacotes" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "trata características de UGC (Conteúdo Gerado por Usuário)" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "autenticar em um repositório especificado" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "terminar sessão com o repositório especificado" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "forçar ação" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -5789,82 +5442,72 @@ msgstr "" "gerenciar documentos de pacote para o repositório selecionado (comentários, " "arquivos, vídeos)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "retornar documentos disponíveis para a chave de pacote especificada " "(exemplo: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "adicionar novo documento à chave de pacote especificada (exemplo: x11-libs/" "qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "remover documentos da base de dados usando seus identificadores" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "gerenciar votos de pacotes para os repositórios selecionados" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" "retornar votos para a chave de pacote especificada (exemplo: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" "adicionar voto para a chave de pacote especificada (exemplo: x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "trata o cache do Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "limpar cache do Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "remover pacotes recebidos e limpar diretórios temporários" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "mostrar informações do sistema" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "Você precisa instalar sys-apps/entropy-server. :-) Instale !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Você precisa instalar/atualizar sys-apps/entropy-server. :-) Instale/" -"Atualize !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "não há parâmetros suficientes" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "Base de Dados de pacotes Instalados não encontrada ou corrompida. Por favor, " "gere-a novamente" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "Seu disco rígido está cheio! Sua falha!" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "Não há mais memória, sua falha!" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -5872,24 +5515,24 @@ msgstr "" "Oi. Meu nome é Relator de Bugs. Infelizmente, tenho que informar-lhe que o " "Equo travou. Bem, você sabe, merda acontece." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Mas há algo que você pode fazer para ajudar Equo à ser um aplicativo melhor." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- MESMO QUE EU NÃO QUEIRA QUE VOCÊ ENVIE O MESMO RELATÓRIO VÁRIAS VEZES --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Agora estou mostrando o que acontece. Não entre em pânico, estou aqui para " "ajudá-lo." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5897,11 +5540,11 @@ msgstr "" "Bem, eu não consigo nem escrever em /tmp. Então, por favor copie o erro e " "envie-o para lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Obviamente você está na Internet..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " @@ -5911,11 +5554,11 @@ msgstr "" " sobre o seu hardware, para os meus criadores, para que eles me consertem? " "(Seu IP será armazenado em log)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ok, ok ok ok... Desculpa!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -5923,19 +5566,19 @@ msgstr "" "Se você quiser ser contatado (e receber suporte ativo), responda também às " "respostas abaixo:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Seu Nome Completo:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Seu Endereço de E-mail:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "O que você estava fazendo:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -5943,7 +5586,7 @@ msgstr "" "Muito obrigado. O erro foi reportado e temos esperança de que o problema " "será resolvido o mais rápido possível." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." @@ -5951,11 +5594,11 @@ msgstr "" "Puxa, não foi possível enviar o relatório. Quando você quiser, envie o " "arquivo para lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "Versão de Entropy/Equo não bate" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "isso pode fazer seu computador explodir!" @@ -5964,7 +5607,6 @@ msgstr "isso pode fazer seu computador explodir!" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Nada para fazer" @@ -6108,10 +5750,7 @@ msgstr "está quebrado" msgid "atom" msgstr "atom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "em" @@ -6136,6 +5775,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Estes são os pacotes que devem ser removidos MANUALMENTE" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Estes seriam os pacotes que seriam removidos" @@ -6364,7 +6004,7 @@ msgstr "Instalação completa" msgid "These are the packages that would be masked" msgstr "Estes são os pacotes que seriam mascarados" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Você deseja continuar?" @@ -6400,8 +6040,7 @@ msgstr "Remoção proibida" msgid "Would you like to calculate dependencies ?" msgstr "Você gostaria de continuar com os cálculos de dependências ?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Você gostaria de removê-los agora ?" @@ -6451,7 +6090,10 @@ msgstr "10 segundos" msgid "Libraries/Executables statistics" msgstr "Estatísticas de Bibliotecas/Executáveis" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Não comparados" @@ -6459,709 +6101,1014 @@ msgstr "Não comparados" msgid "Would you like to install them ?" msgstr "Você gostaria de instalá-los ?" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "mostrar status dos repositórios" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "realizar algumas buscas nas bases de dados do repositório" - -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" -msgstr "" -"buscar pacotes e dependências dentro da base de dados padrão do repositório" - -#: ../../server/reagent.py:72 -#, fuzzy -msgid "(re)initialize the current repository" -msgstr "(re)inicializar a base de dados atual do repositório" - -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" -msgstr "não foi possível incluir as dependências reversas" - -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "trocar para o galho especificado no repositório" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "verificar integridade remota dos átomos fornecidos" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "clonar um pacote definindo um rótulo arbitrária" - -#: ../../server/reagent.py:89 -msgid "mask given package in given repository" -msgstr "mascara pacote na base de dados" - -#: ../../server/reagent.py:90 -msgid "unmask given packages in given repository" -msgstr "desmascara pacote na base de dados" - -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "buscar por pacotes órfãos no SPM" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "buscar novos pacotes disponíveis no SPM" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" -msgstr "procurar por bibliotecas em falta" - -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "procurar por bibliotecas em falta" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "remover pacotes recebidos e limpar diretórios temporários)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" -"Iniciando sincronização de dados através dos espelhos (pacotes/bases de " -"dados)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Abortando !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Por favor insira uma mensagem de efetuação" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "Devo continuar com o processo de organização ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Sair/Efetuar" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Texto de Notícia" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "URL Relevante (opcional)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Quadro de avisos do repositório, inserção de novo item" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Escolha aquele que você quer remover" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Você tem certeza de que quer removê-lo?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Iniciando trancamento das bases de dados dos espelhos" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Um problema ocorreu em pelo menos um espelho" - -#: ../../server/server_activator.py:458 -msgid "Repositories lock complete" -msgstr "Trancamento dos repositórios completado" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Iniciando destrancamento das bases de dados dos espelhos" - -#: ../../server/server_activator.py:473 -msgid "Repositories unlock complete" -msgstr "Repositórios destrancados" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Iniciando trancamento das bases de dados dos espelhos" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Trancamento dos espelhos de download completo" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Iniciando o destrancamento das bases de dados dos espelhos de download" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Destrancamento dos espelhos de download completos" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "BASE DE DADOS" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "RECEBIMENTO" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "Sincronizando repositórios" - -#: ../../server/server_activator.py:566 -msgid "Repositories sync error, cannot continue." -msgstr "Erros na sincronização da base de dados, não foi possível continuar." - -#: ../../server/server_activator.py:588 -msgid "Cleaning unavailable packages from repository" -msgstr "Limpando pacotes não disponíveis no repositório" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" -"Removendo pacotes indisponíveis, sobrescrevendo padrões Entropy. Geralmente " -"é ruim" - -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" -"Usuários com repositórios desatualizados, não possível encontra pacotes " -"remotamente" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -msgid "Remote Entropy Repository Status" -msgstr "Status da Base de Dados Remota do Entropy" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Host" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Revisão" - -#: ../../server/server_activator.py:615 -msgid "Local revision currently at" -msgstr "Revisão da base de dados local atualmente em" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "escolher em qual galho operar" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" -msgstr "" - -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "funções de tratamento de repositórios de pacotes " - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "sincronizar repositórios de pacotes através dos espelhos primários" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "funções de tratamento de repositório" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "Interface GPG carregada, diretório home" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "Importando par-chave do repositório" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "Existe outro par-chave no repositório" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "Chave GPG importada com marca digital" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Você deveria assinalar todos os pacotes nele" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "Exportando chave privada para o repositório" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "Exportando chave pública para o repositório" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "não há par-chave no repositório" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "Par-chave EXPIRADO para o repositório" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "Não foi possível exportar chave GPG do repositório" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "Chave GPG exportada com sucesso" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "Criando chaves para o repositório" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "Já existe outra chave no repositório" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "Insira e-mail" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "Inserir dias para expirar (0= não expira)" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "Inserir palavra-chave (vazio=sem palavra-chave)" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "Criação do par-chave GPG do repositório" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "produzida chave GPG com marca digital" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" -"Faça \"friggin'\" para gerar uma chave lembrança e guarde em local seguro." - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "Você também pode mandar sua chaves para um servidor de chaves" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "Deletando chaves do repositório" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "Não há chaves disponíveis para o repositório corrente" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "Você tem certeza? Mesmo?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr " Metadados das chaves não estão disponíveis para" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "Chave GPG com marca digital removida" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "Informação GPG do repositório" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "Identificador de chave-pública" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "Chave com marcação digital pública" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "Tamanho da chave" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Data de cria;'ao" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "Expira em" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "nenhum pacote especificado." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Habilitando" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Habilitado" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "já habilitado" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Desabilitando" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Desabilitado" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "já desabilitado" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "Sintaxe inválida." - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -msgid "No valid repository specified." -msgstr "Nenhum repositório válido foi especificado." - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Não é possível comparar" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -msgid "No packages selected." -msgstr "Não há pacotes selecionados." - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "dependências do pacote" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Sem dependências" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Tipo de dependência" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "Selecione um tipo de dependência para" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Editor de dependências" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Confirma ?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "dependências atualizadas com sucesso" - -#: ../../server/server_reagent.py:355 -msgid "Masking" -msgstr "Mascarando" - -#: ../../server/server_reagent.py:382 -msgid "Unmasking" -msgstr "Desmascarando" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Comparando pacotes para remover" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Parâmetros insuficientes" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Estes são os pacotes que seriam removidos da base de dados" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Removendo pacotes selecionados" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Pacotes removidos. Para remover pacotes binários, execute o activator." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Buscando pacotes para remover" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "" -"Estes são os pacotes injetados que foram puxados para dentro para remoção" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "Trocando galho, certifique-se de ter seus pacotes em sincronia." - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Coletando pacotes que seriam marcados" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Estes são os pacotes que seriam marcados" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Nenhum repositório válido especificado." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Repositórios inválidos especificados." - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Repositório do Entropy inicializado" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Criando base de dados vazia em" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Não é possível sobrescrever arquivo já existente" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Empurrando base de dados do Repositório" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Nenhum pacote válido para reempacotar." - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Escaneando base de dados, buscando diferenças" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "Átomo inválido" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Nnadda pparaa fffazzeer" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Estes são os pacotes que teriam seu status mudado para injetado" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Você gostaria de transformá-las agora ?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Transformando base de dados" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Transformação da base de dados completa" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "expirou" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Quais Pacotes você deseja remover ?" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Remover este pacote?" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Quais Pacotes você deseja instalar ?" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Instala este pacote?" - -#: ../../server/server_reagent.py:1000 -msgid "These are the packages that would be added/updated" -msgstr "Estes são os pacotes que seriam instalados/atualizados" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "Aviso" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Você gostaria de empacotá-los agora ?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "dentro" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Compactando pacotes" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Ignorando entrada quebrada do Spm, por favor recompile-a" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Nada para fazer, verifique depois." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Entradas tratadas" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 -msgid "local revision" -msgstr "revisão local" - -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 -msgid "stored packages" -msgstr "pacotes estocados" - -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 -msgid "upload packages" -msgstr "pacotes enviados" - -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 -msgid "unstaged packages" -msgstr "pacotes não classificados em \"Stages\"" - -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 -msgid "add" -msgstr "adiciona" - -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 -msgid "switch injected" -msgstr "trocando pacotes injetados" - -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"Estes são novos pacotes disponíveis, tanto atualizáveis como não instalados" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Nenhum conjunto de pacotes encontrado" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "conjunto de pacotes não encontrado" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Nada encontrado" - -#: ../../server/eit/main.py:80 +#: ../../server/eit/main.py:82 msgid "superuser access required" msgstr "" -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 +#, fuzzy +msgid "available tests" +msgstr "disponível" + +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Teste de dependências" + +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Teste de bibliotecas" + +#: ../../server/eit/commands/test.py:57 +#, fuzzy +msgid "dump results to file" +msgstr "adicionando resultados aos arquivos" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" +msgstr "procurar por bibliotecas em falta" + +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" +msgstr "" + +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Atoms dos pacotes" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "verificar também integridade de pacotes" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 +#, fuzzy +msgid "verify remote packages integrity" +msgstr "verificar também integridade de pacotes" + +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" +msgstr "" + +#: ../../server/eit/commands/query.py:55 +#, fuzzy +msgid "execute query" +msgstr "Executar cópia" + +#: ../../server/eit/commands/query.py:56 +#, fuzzy +msgid "available queries" +msgstr "disponível" + +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "package.mask do usuário" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" +msgstr "" + +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "habilitar o repositório especificado" + +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Nome do host" + +#: ../../server/eit/commands/query.py:72 +#, fuzzy +msgid "show libraries (.so) required by matched packages" +msgstr "Estes são os pacotes correspondentes" + +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "mostrar árvore de dependências reversas para os átomos fornecidos" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" +msgstr "" + +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" +msgstr "não foi possível incluir as dependências reversas" + +#: ../../server/eit/commands/query.py:102 +#, fuzzy +msgid "search through package sets" +msgstr "mostrar conjuntos de pacotes disponíveis" + +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" + +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Nome do Conjunto de Pacotes" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "procurar por pacote pela descrição" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Informações dos repositórios" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Descrição do pacote" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Nada encontrado" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "bibliotecas" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" +msgstr "" + +#: ../../server/eit/commands/query.py:313 +#, fuzzy +msgid "sets found" +msgstr "usuário não encontrado" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "Pacotes não encontrados" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "Atualizando metadados dos pacotes" + +#: ../../server/eit/commands/status.py:84 +msgid "local revision" +msgstr "revisão local" + +#: ../../server/eit/commands/status.py:91 +msgid "stored packages" +msgstr "pacotes estocados" + +#: ../../server/eit/commands/status.py:96 +msgid "upload packages" +msgstr "pacotes enviados" + +#: ../../server/eit/commands/status.py:103 +msgid "unstaged packages" +msgstr "pacotes não classificados em \"Stages\"" + +#: ../../server/eit/commands/status.py:135 +msgid "add" +msgstr "adiciona" + +#: ../../server/eit/commands/status.py:147 +msgid "switch injected" +msgstr "trocando pacotes injetados" + +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "mostrar status dos repositórios" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Não há pacotes de Kernel" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "listar pacotes instalados" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "não disponível" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "sem pacotes" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "buscar pacotes nos repositórios" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "buscar pacotes nos repositórios" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Repositório do Entropy inicializado" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Repositório atual" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Repositório de destino" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "dependências do pacote" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "mover pacotes de um repositório para outro" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Nome do Conjunto de Pacotes" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Nada encontrado" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "não está listado no repositório!" + +#: ../../server/eit/commands/reset.py:79 +msgid "reset error" +msgstr "erro ao resetar" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Revisão do repositório inválida" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "mostrar status dos repositórios" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "mover pacotes de um repositório para outro" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 msgid "this help" msgstr "esta ajuda" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "remover o repositório" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Pulando repositório" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Revisão do repositório" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Atualizar Repositórios" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Escolha o repositório" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Mensagem de efetuação" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Por favor insira uma mensagem de efetuação" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Status da Base de Dados Remota do Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Host" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Remotamente" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "local" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Abortando !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Gerar informações de autenticação" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Mostrar Pacotes Disponíveis" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Adicionar entrada ao quadro de avisos" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Remover entrada do quadro de avisos do repositório" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Quadro de Notícias" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Insira URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Escolha aquele que você quer remover" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Você tem certeza de que quer removê-lo?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Sair/Efetuar" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Receber quadro de avisos do repositório" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "caminho do repositório" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "trabalhando na base de dados" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "habilitar o repositório especificado" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr " repositório dos pacotes Instalados" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Removendo pacotes selecionados" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Não é possível comparar" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Nenhum pacote válido para reempacotar." + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Escaneando base de dados, buscando diferenças" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Backend inválido" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Nnadda pparaa fffazzeer" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "foi injetado" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Transformando base de dados" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Transformação da base de dados completa" +msgid "Action completed" +msgstr "injeção completa" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "expirou" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Quais Pacotes você deseja remover ?" +msgid "Select packages for removal" +msgstr "Buscando pacotes para remover" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Remover este pacote?" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Correspondências à remover da base de dados do repositório" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Quais Pacotes você deseja instalar ?" +msgid "Select packages to add" +msgstr "Alguns pacotes estão mascarados" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Instala este pacote?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Eles seriam adicionados à base de dados do sistema" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "Aviso" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Você gostaria de empacotá-los agora ?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "dentro" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Compactando pacotes" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Ignorando entrada quebrada do Spm, por favor recompile-a" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Nada para fazer, verifique depois." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Entradas tratadas" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr " repositório dos pacotes Instalados" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "não está disponível" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "trabalhando na base de dados" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "comparar um pacote nos repositórios" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "habilitar o repositório especificado" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Recebendo base de dados do repositório" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "mostrar o estado atual de trancamento" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Tabela de status dos espelhos" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Servidor" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "Para repositório" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "No repositório" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +#, fuzzy +msgid "show system packages, build deps, circular deps" +msgstr "" +"inclue pacotes de sistema, monta dependências e informação de circularidade" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "mostrar árvore de dependências reversas para os átomos fornecidos" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Limpando pacotes não disponíveis no repositório" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "" +"Removendo pacotes indisponíveis, sobrescrevendo padrões Entropy. Geralmente " +"é ruim" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Todos os repositórios já estavam atualizados." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Limpando pacotes não disponíveis no repositório" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "arquivo não encontrado" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "mostrar arquivos pussuídos pelos atoms fornecidos" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "habilitar o repositório especificado" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "não foi possível incluir as dependências reversas" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "mover pacotes de um repositório para outro" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "dependências do pacote" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Sem dependências" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Tipo de dependência" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "Selecione um tipo de dependência para" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Editor de dependências" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Confirma ?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "dependências atualizadas com sucesso" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr " repositório dos pacotes Instalados" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "dependências do pacote" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Configurando pacote" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "copiar pacotes de um repositório para outro" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Desempacotando pacote de dependências" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "forçar ação" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "criando par-chave para base de dados e assinando os pacotes" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "deleta" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "não há par-chave no repositório" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "" +"assina (ou re-assina) pacotes no repositório, usando o conjunto par-chave " +"corrente" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "importar par-chave, ligar ao repositório habilitado" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Chave com marcação digital pública" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "base de dados remota foi trancada repentinamente" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "Interface GPG carregada, diretório home" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "Criando chaves para o repositório" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "Já existe outra chave no repositório" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "Insira e-mail" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "Inserir dias para expirar (0= não expira)" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "Inserir palavra-chave (vazio=sem palavra-chave)" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "Criação do par-chave GPG do repositório" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "produzida chave GPG com marca digital" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Você deveria assinalar todos os pacotes nele" + +#: ../../server/eit/commands/key.py:211 +#, fuzzy +msgid "Generate a revoke key and store it in a safe place" +msgstr "" +"Faça \"friggin'\" para gerar uma chave lembrança e guarde em local seguro." + +#: ../../server/eit/commands/key.py:221 +#, fuzzy +msgid "You may want to send your keys to a key server" +msgstr "Você também pode mandar sua chaves para um servidor de chaves" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "Deletando chaves do repositório" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "Não há chaves disponíveis para o repositório corrente" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "Você tem certeza? Mesmo?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr " Metadados das chaves não estão disponíveis para" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "Chave GPG com marca digital removida" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "Informação GPG do repositório" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "Identificador de chave-pública" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "Chave com marcação digital pública" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "Tamanho da chave" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Data de cria;'ao" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "Expira em" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Importando par-chave do repositório" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "Existe outro par-chave no repositório" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "Chave GPG importada com marca digital" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Você deveria assinalar todos os pacotes nele" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "Exportando chave privada para o repositório" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "Exportando chave pública para o repositório" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "não há par-chave no repositório" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "Par-chave EXPIRADO para o repositório" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "Não foi possível exportar chave GPG do repositório" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "Chave GPG exportada com sucesso" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "gerenciar um repositório" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Atoms dos pacotes" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Não é possível definir diretório de cache" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "Serviço não suportado" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Backend inválido" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "buscar pacotes nos repositórios" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Não é possível trocar para o galho" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "branch" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Átomo inválido" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "gerenciar um repositório" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Repositório atual" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7219,112 +7166,118 @@ msgstr "" msgid "Application" msgstr "Aplicação" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 msgid "Successfully logged in." msgstr "Autenticado com sucesso." -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "Serviço não suportado" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Voto registrado com sucesso" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Erro ao registrar voto" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 msgid "Already voted" msgstr "Já votado" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Aplicações" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Aplicativos a remover" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Aplicativos a serem rebaixados" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Aplicativos a instalar" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Aplicativos a serem atualizados" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Aplicativos a serem reinstalados" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Proposto" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Destino" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Identificador de Segurança" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Nome do Aplicativo" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Espere, por favor. Carregando..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Advertências sendo carregadas" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Nenhum consultivo" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Não há items para mostrar" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Nome do arquivo" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 msgid "Cannot disable repository!" msgstr "Repositório não pode ser desabilitado!" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Ativo" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Atualização" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Revisão" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identificador de Repositório" @@ -7739,6 +7692,10 @@ msgstr "Alguns pacotes estão mascarados" msgid "Masked package" msgstr "Pacote mascarado" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Habilitado" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Por favor confirme as ações acima" @@ -9787,12 +9744,492 @@ msgstr "Notificador de Atualizações de Aplicativos Magneto" msgid "_Load Package Manager" msgstr "_Carregar Gerenciador de Pacotes" +#~ msgid "handles community-side features" +#~ msgstr "trata características do lado da comunidade" + +#~ msgid "community repositories management functions" +#~ msgstr "funções de gerenciamento de repositórios da comunidade" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "escanear o sistema procurando por novos pacotes compilados" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "analizar o diretório de Armazenamento do Entropy diretamente" + +#~ msgid "repackage the specified atoms" +#~ msgstr "reempacotar os atoms especificados" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "não perguntar nada exceto coisas críticas" + +#~ msgid "manage only the specified atoms" +#~ msgstr "gerenciar apenas os atoms especificados" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "roda em modo interativo (pergunta as coisas, uma por uma)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "adicionar pacotes binários ao repositório sem afetar escopos " +#~ "(multipackages)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "funções de gerenciamento de espelhos de repositórios da comunidade" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "sincronizar pacotes, base de dados e também fazer uma limpeza" + +#~ msgid "sync all the configured repositories" +#~ msgstr "sincronizar todos os repositórios configurados" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "sincronizar pacotes através dos espelhos primários" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "sincronizar a base de dados do repositório atual através dos espelhos " +#~ "primários" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "trancar a base de dados do repositório atual (lado do servidor)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "destrancar a base de dados do repositório atual (lado do servidor)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "trancar a base de dados do repositório atual (lado do cliente)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "destrancar a base de dados do repositório atual (lado do cliente)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "remover pacotes binários que não estejam em repositórios e os expirados" + +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "" +#~ "limpando pacotes indisponíveis nos repositórios (semelhante ao Tidy, " +#~ "porém mais rigoroso)" + +#~ msgid "expiration days [default is: 0, dangerous!]" +#~ msgstr "tempo para expirar (default é: 0,perigoso!)" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(re)inicializar a base de dados atual do repositório" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "" +#~ "não preencha a base de dados novamente utilizando pacotes em espelhos" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(re)criar a base de dados para o repositório especificado" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "forçar manualmente um empurrão de revisão para a base de dados atual do " +#~ "repositório" + +#~ msgid "synchronize the database" +#~ msgstr "sincronizar a base de dados" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "" +#~ "retornar despejo de pacotes de versões antigas de Sabayon na versão atual" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "remover os atoms fornecidos da base de dados atual do repositório" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "remover os atoms injetados fornecidos (todos se nenhum atom for fornecido)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "criar uma base de dados de repositório vazia no diretório fornecido" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "trocar os atoms fornecidos para o galho especificado (ou 'world')" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "verificar integridade remota dos atoms fornecidos (ou 'world')" + +#~ msgid "backup current repository database" +#~ msgstr "gerar cópia de segurança para a base de dados atual do repositório" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "" +#~ "restaurar uma cópia de segurança da base de dados do repositório " +#~ "anteriormente gerada" + +#~ msgid "enable the specified repository" +#~ msgstr "habilitar o repositório especificado" + +#~ msgid "disable the specified repository" +#~ msgstr "desabilitar o repositório especificado" + +#~ msgid "show the current Server Interface status" +#~ msgstr "mostrar o status atual da Interface de Servidor" + +#~ msgid "check packages in repository for missing dependencies" +#~ msgstr "checar pacotes do repositório, procurando se faltam dependências " + +#~ msgid "handle packages dependencies" +#~ msgstr "tratar dependências de pacotes" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "clonar um pacote dentro de um repositório atribuindo um rótulo arbitrário" + +#~ msgid "pulls dependencies in" +#~ msgstr "puxar dependências para dentro" + +#~ msgid "set the default repository" +#~ msgstr "definir o repositório padrão" + +#~ msgid "manage repository digital signatures (OpenGPG)" +#~ msgstr "manipula assinaturas dos repositórios digitais (OpenGPG)" + +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "" +#~ "mostrar informações das chaves configuradas para os repositórios " +#~ "habilitados" + +#~ msgid "export public key of given repository" +#~ msgstr "exportar chave pública do repositório" + +#~ msgid "export private key of given repository" +#~ msgstr "exportar chave privada do repositório" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "" +#~ "realizar algumas buscas nas bases de dados de repositórios da comunidade" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "mostrar de qual pacote os arquivos forneidos pertencem" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "mostrar quais pacotes dependem dos atoms fornecidos" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "listar todos os pacotes no repositório padrão" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "buscar pacotes dentro da base de dados padrão do repositório" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "mostrar " + +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "mostrar os pacotes instalados, com ênfase em suas revisões" + +#~ msgid "source package manager functions" +#~ msgstr "funções do gerenciador de códigos-fonte de pacotes (SPM)" + +#~ msgid "compilation function" +#~ msgstr "função de compilação" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "compilar pacotes pertencentes às categories fornecidas" + +#~ msgid "just list packages" +#~ msgstr "apenas listar pacotes" + +#~ msgid "do not pull old package slots" +#~ msgstr "não semear slots de pacotes obsoletos" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "compilar pacotes dos nomes conjuntos de pacotes fornecidos" + +#~ msgid "rebuild everything" +#~ msgstr "reconstruir tudo" + +#~ msgid "run database update if all went fine" +#~ msgstr "executar atualização da base de dados se tudo der certo" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "executar sincronização de espelho se tudo der certo" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "escanear pacotes órfãos no SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "funções de tratamento do quadro de notícias" + +#~ msgid "add a news item to the notice board" +#~ msgstr "adicionar um item de notícia ao quadro de notícias" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "remover um item de notícia ao quadro de notícias" + +#~ msgid "read the current notice board" +#~ msgstr "ler o quadro de notícias atual" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "" +#~ "procurar por dependências não satisfeitas através dos repositórios de " +#~ "comunidades" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "verificar a integridade dos arquivos locais de pacotes" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "Você precisa instalar sys-apps/entropy-server. :-) Instale !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Você precisa instalar/atualizar sys-apps/entropy-server. :-) Instale/" +#~ "Atualize !" + +#~ msgid "show current repositories status" +#~ msgstr "mostrar status dos repositórios" + +#~ msgid "do some searches into repository databases" +#~ msgstr "realizar algumas buscas nas bases de dados do repositório" + +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "" +#~ "buscar pacotes e dependências dentro da base de dados padrão do " +#~ "repositório" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(re)inicializar a base de dados atual do repositório" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "trocar para o galho especificado no repositório" + +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "verificar integridade remota dos átomos fornecidos" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "clonar um pacote definindo um rótulo arbitrária" + +#~ msgid "mask given package in given repository" +#~ msgstr "mascara pacote na base de dados" + +#~ msgid "unmask given packages in given repository" +#~ msgstr "desmascara pacote na base de dados" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "buscar por pacotes órfãos no SPM" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "buscar novos pacotes disponíveis no SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "procurar por bibliotecas em falta" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "remover pacotes recebidos e limpar diretórios temporários)" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Iniciando sincronização de dados através dos espelhos (pacotes/bases de " +#~ "dados)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Devo continuar com o processo de organização ?" + +#~ msgid "Notice text" +#~ msgstr "Texto de Notícia" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "URL Relevante (opcional)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Quadro de avisos do repositório, inserção de novo item" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Iniciando trancamento das bases de dados dos espelhos" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Um problema ocorreu em pelo menos um espelho" + +#~ msgid "Repositories lock complete" +#~ msgstr "Trancamento dos repositórios completado" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Iniciando destrancamento das bases de dados dos espelhos" + +#~ msgid "Repositories unlock complete" +#~ msgstr "Repositórios destrancados" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Iniciando trancamento das bases de dados dos espelhos" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Trancamento dos espelhos de download completo" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "" +#~ "Iniciando o destrancamento das bases de dados dos espelhos de download" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Destrancamento dos espelhos de download completos" + +#~ msgid "DATABASE" +#~ msgstr "BASE DE DADOS" + +#~ msgid "DOWNLOAD" +#~ msgstr "RECEBIMENTO" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "Sincronizando repositórios" + +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "" +#~ "Erros na sincronização da base de dados, não foi possível continuar." + +#~ msgid "" +#~ "Users with outdated repositories, won't be able to find package files " +#~ "remotely." +#~ msgstr "" +#~ "Usuários com repositórios desatualizados, não possível encontra pacotes " +#~ "remotamente" + +#~ msgid "Local revision currently at" +#~ msgstr "Revisão da base de dados local atualmente em" + +#~ msgid "choose on what branch operating" +#~ msgstr "escolher em qual galho operar" + +#~ msgid "package repositories handling functions" +#~ msgstr "funções de tratamento de repositórios de pacotes " + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "sincronizar repositórios de pacotes através dos espelhos primários" + +#~ msgid "repository handling functions" +#~ msgstr "funções de tratamento de repositório" + +#~ msgid "no package specified." +#~ msgstr "nenhum pacote especificado." + +#~ msgid "Enabling" +#~ msgstr "Habilitando" + +#~ msgid "already enabled" +#~ msgstr "já habilitado" + +#~ msgid "Disabling" +#~ msgstr "Desabilitando" + +#~ msgid "Disabled" +#~ msgstr "Desabilitado" + +#~ msgid "already disabled" +#~ msgstr "já desabilitado" + +#~ msgid "Invalid syntax." +#~ msgstr "Sintaxe inválida." + +#~ msgid "No valid repository specified." +#~ msgstr "Nenhum repositório válido foi especificado." + +#~ msgid "No packages selected." +#~ msgstr "Não há pacotes selecionados." + +#~ msgid "Masking" +#~ msgstr "Mascarando" + +#~ msgid "Unmasking" +#~ msgstr "Desmascarando" + +#~ msgid "Matching packages to remove" +#~ msgstr "Comparando pacotes para remover" + +#~ msgid "Not enough parameters" +#~ msgstr "Parâmetros insuficientes" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Estes são os pacotes que seriam removidos da base de dados" + +#~ msgid "Removing selected packages" +#~ msgstr "Removendo pacotes selecionados" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Pacotes removidos. Para remover pacotes binários, execute o activator." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "" +#~ "Estes são os pacotes injetados que foram puxados para dentro para remoção" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "Trocando galho, certifique-se de ter seus pacotes em sincronia." + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Coletando pacotes que seriam marcados" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Estes são os pacotes que seriam marcados" + +#~ msgid "No valid repositories specified." +#~ msgstr "Nenhum repositório válido especificado." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Repositórios inválidos especificados." + +#~ msgid "Creating empty database to" +#~ msgstr "Criando base de dados vazia em" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Não é possível sobrescrever arquivo já existente" + +#~ msgid "Bumping Repository database" +#~ msgstr "Empurrando base de dados do Repositório" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Estes são os pacotes que teriam seu status mudado para injetado" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Você gostaria de transformá-las agora ?" + +#~ msgid "Transforming from database" +#~ msgstr "Transformando base de dados" + +#~ msgid "Database transform complete" +#~ msgstr "Transformação da base de dados completa" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Quais Pacotes você deseja remover ?" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Quais Pacotes você deseja instalar ?" + +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Estes são os pacotes que seriam instalados/atualizados" + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "Estes são novos pacotes disponíveis, tanto atualizáveis como não " +#~ "instalados" + +#~ msgid "No package sets found" +#~ msgstr "Nenhum conjunto de pacotes encontrado" + +#~ msgid "package set not found" +#~ msgstr "conjunto de pacotes não encontrado" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Transformação da base de dados completa" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Quais Pacotes você deseja remover ?" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Quais Pacotes você deseja instalar ?" + #~ msgid "Entropy Server interface must be run as root" #~ msgstr "Interface do Entropy Server deve ser executada como root" -#~ msgid "reset error" -#~ msgstr "erro ao resetar" - #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Bloqueio de recursos do Entropy não adquirido" @@ -9965,9 +10402,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "empty username" #~ msgstr "nome de usuário em branco" -#~ msgid "user not found" -#~ msgstr "usuário não encontrado" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "você precisa efetuar o login no site para atualizar seu formato de senha" @@ -10048,10 +10482,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "EAPI3 Service status" #~ msgstr "Status do Serviço EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "base de dados remota foi trancada repentinamente" - #~ msgid "EAPI3 Service" #~ msgstr "Serviço EAPI3" @@ -10416,9 +10846,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "From repository" #~ msgstr "Do repositório" -#~ msgid "To repository" -#~ msgstr "Para repositório" - #~ msgid "Copy instead of move?" #~ msgstr "Copiar ao invés de mover?" @@ -10468,18 +10895,9 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Check mode" #~ msgstr "Modo de checagem" -#~ msgid "Get repository notice board" -#~ msgstr "Receber quadro de avisos do repositório" - -#~ msgid "Remove notice board entry" -#~ msgstr "Remover entrada do quadro de avisos do repositório" - #~ msgid "Entry Identifiers" #~ msgstr "Identificadores de Entrada" -#~ msgid "Add notice board entry" -#~ msgstr "Adicionar entrada ao quadro de avisos" - #~ msgid "Notice link" #~ msgstr "Link de notícia" @@ -10568,9 +10986,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Previous database copied to file" #~ msgstr "Base de dados anterior copiada para o arquivo" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Todos os repositórios já estavam atualizados." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "os repositórios já estavam atualizados. Os outros foram atualizados." @@ -10897,9 +11312,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "No valid repositories" #~ msgstr "Nenhum repositório válido" -#~ msgid "not available" -#~ msgstr "não disponível" - #~ msgid "is empty" #~ msgstr "está vazio" @@ -10982,9 +11394,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Execute" #~ msgstr "Executar" -#~ msgid "Destination repository" -#~ msgstr "Repositório de destino" - #~ msgid "Copy/move packages" #~ msgstr "Copiar/mover pacotes" @@ -11059,9 +11468,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Não é possível mover/copiar pacotes de repositórios diferentes" -#~ msgid "Execute copy" -#~ msgstr "Executar cópia" - #~ msgid "Entropy packages move/copy" #~ msgstr "Copiar/mover pacotes do Entropy" @@ -11074,9 +11480,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Insert your new notice board entry" #~ msgstr "Insira sua nova entrada no quadro de notícias" -#~ msgid "Server" -#~ msgstr "Servidor" - #~ msgid "current revision" #~ msgstr "revisão atual" @@ -11095,9 +11498,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Choose the execution mode" #~ msgstr "Escolha o modo de execução" -#~ msgid "Commit message" -#~ msgstr "Mensagem de efetuação" - #~ msgid "Pretend mode" #~ msgstr "Modo de pretend" @@ -11173,9 +11573,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Escolha o repositório" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Escolha o respositório que você deseja escanear" @@ -11194,9 +11591,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "You must now either press the" #~ msgstr "Você precisa pressionar agora" -#~ msgid "Update Repositories" -#~ msgstr "Atualizar Repositórios" - #~ msgid "or the" #~ msgstr "ou o" @@ -11271,9 +11665,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Uma instância baseada em interface UGC Client válida é necessária" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Não é possível definir diretório de cache" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Uma instância válida da interface Client é necessária" @@ -11422,10 +11813,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "Downloading packages system mask" #~ msgstr "Recebendo máscara de sistema de pacotes" -#, fuzzy -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Recebendo base de dados do repositório" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Recebendo arquivo de pacotes rotulados como conflitantes" @@ -11462,9 +11849,6 @@ msgstr "_Carregar Gerenciador de Pacotes" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "contador para atom está duplicado, ignorando" -#~ msgid "file not found" -#~ msgstr "arquivo não encontrado" - #~ msgid "invalid checksum" #~ msgstr "soma de checagem inválida" diff --git a/misc/po/ru.po b/misc/po/ru.po index b9bbb4d14..a3d6144d0 100644 --- a/misc/po/ru.po +++ b/misc/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Entropy 0.98.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2009-09-21 02:01+0300\n" "Last-Translator: Maksim Belyanovskiy \n" "Language-Team: Maksim Belyanovskiy \n" @@ -18,37 +18,37 @@ msgstr "" "X-Poedit-Language: Russian\n" "X-Poedit-Country: RUSSIAN FEDERATION\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Синхронизация текущей базы данных" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "пожалуйста, подождите" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Удаление записи" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Добавление записи" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Экспорт таблицы базы данных" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 #, fuzzy msgid "Database Export complete." msgstr "Экспорт базы данных завершён." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,22 +57,22 @@ msgstr "Экспорт базы данных завершён." msgid "ATTENTION" msgstr "ВНИМАНИЕ" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 #, fuzzy msgid "Spm error occured" msgstr "зеркало разблокировано" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Путь к счётчику Spm не найден" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Генерация мета-информации. Пожалуйста, подождите." -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 #, fuzzy msgid "generating provided_libs metadata, please wait!" msgstr "Генерация мета-информации. Пожалуйста, подождите." @@ -252,16 +252,16 @@ msgstr "Сборка счетчиков портеджа" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "ошибка" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "не найдено" @@ -310,7 +310,7 @@ msgstr "Невозможно запустить фазу конфигураци #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -373,7 +373,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "Невозможно обновить файл установленных пакетов SPM" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -407,7 +407,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "не существует" @@ -446,7 +446,7 @@ msgid "Error calculating dependencies" msgstr "Ошибка при подсчёте зависимостей" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "не поддерживается" @@ -511,467 +511,467 @@ msgstr "соединение с зеркалом" msgid "setting directory to" msgstr "изменение директории на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Загружен интерфейс зеркал сервера Entropy" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "репозиторий" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Зеркало пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "поиск файла на зеркале" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "разблокировка" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "блокировка" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "зеркало" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "зеркало уже заблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "зеркало уже разблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "зеркало для загрузки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "зеркало уже заблокировано для загрузки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "зеркало уже разблокировано для загрузки" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "для загрузки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "зеркало успешно заблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "зеркало не заблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "зеркало успешно разблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "ошибка при разблокировке" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "зеркало не разблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "подключение для скачивания пакета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "скачивание пакета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "пакет" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "отсутствует в списках в текущей базе данных репозиториев!!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "проверка контрольной суммы пакета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "скачано успешно" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "контрольная сумма не подсчитана. Перезагрузка..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "кажется, сломалось. Попробуйте это перепаковать. Прекращаю!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "на зеркале не наблюдается нормального файла версии базы данных" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "невозможно скачать версию репозитория" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "зеркало не обладает корректным файлом версии" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "ждем две минуты перед передачей данных" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "зеркало разблокировано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Локальная статистика" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "директория закачки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "файлы готовы" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "директория пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "закачка" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "скачать" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "копировать" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "удалить" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Пакеты к удалению" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Пакеты к локальному перемещению" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Пакеты к закачке" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Общий объём к удалению" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Общий объём к закачке" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Общий объём к скачиванию" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Статистика по удаленным операциям для" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "отдалённые пакеты" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "хранимые файлы" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Подсчёт очередей" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "удаление пакета и хэша" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "синхронизация" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "удаление завершено" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "копирование файла и хэша в репозиторий" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "ошибки при закачке" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "причина" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "закачка успешно завершена" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "ошибки загрузки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "загрузка успешно завершена" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA проверяет файл пакета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "ошибочный файл пакета, будьте добры исправить" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "начало синхронизации пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "синхронизация пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "ошибка сокета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "нечего делать на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Расширение очередей" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "нечего синхронизировать для" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Желаете ли Вы применить вышеуказанные шаги?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Нет" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "клавиатура прекратила работу !!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "вам необходимо запаковать их снова" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "обнаружено исключение" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "свершилось, одно зеркало синхронизировалась нормально!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "чисто" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "сборка устаревших пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "сборка устаревших пакетов на выбранной ветке" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "нечего удалять по этой ветви" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "здесь - устаревшие пакеты" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Желаете ли продолжить?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "удаленное удаление пакетов" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "ошибки при удалении" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "локальное удаление пакетов" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "удалить" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "скачивание доски уведомлений с зеркал на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "доска уведомлений успешно скачана с" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "закачка доски уведомлений с" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "закачка доски уведомлений провалена на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "доска уведомлений закачана успешно" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "закачка доски уведомлений с" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "закачка доски уведомлений провалена на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "доска уведомлений закачана успешно" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -985,8 +985,8 @@ msgid "download path" msgstr "путь загрузки" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "ошибки" @@ -994,284 +994,296 @@ msgstr "ошибки" msgid "failed to download from mirror" msgstr "не удалось загрузить с зеркала" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Невозможно распаковать" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Проблемы с treeupdates" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Отправка старой информации назад" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "конфигурированные наборы пакетов" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Ничего не сконфигурировано" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "создание сжатого дампа базы данных + контрольной суммы" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "репозиторий" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "лёгкий дамп" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "контрольная сумма лёгкого дампа" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "открыватель" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "сжатие базы данных + контрольной суммы" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "составленная информация репозитория" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "Контрольная сумма базы данных репозитория" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "контрольная сумма сжатой базы данных" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "подготовка несжатой базы данных к закачке" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "деактивированный EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "подготовка к закачке базы данных на зеркало" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "закачка провалена, не разблокируется и продолжается" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "уже отключено" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Имя репозитория" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "Проблемы с загрузкой" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "просмотрщик доски уведомлений репозитория" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "конфигурированные наборы пакетов" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() докладывает об ошибках" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Здесь перечислены пакеты, которые должны быть удалены" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "проблемы с закачкой" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "синхронизация базы данных успешно завершена" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 #, fuzzy msgid "mirrors have not been unlocked. Sync them." msgstr "Зеркала не разблокированы. Не забудьте их синхронизировать." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 #, fuzzy msgid "cannot store updates RSS cache" msgstr "невозможно обновить treeupdates-информацию" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "ДОБАВЛЕНИЕ" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "добавлено" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "сделайте quickpkg вручную, чтобы обновить вложенную базу данных" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "База данных репозитория обновлена в любом случае" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "репозиторий не сконфигурирован" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "защищённый ID репозитория, невозможно это использовать, тут уж звиняйте..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Версия репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "установка по умолчанию на 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "репозиторий" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "конфигурированные наборы пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "невозможно подсчитать" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Инициализация базы данных Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Вы желаете инициализировать Ваш репозиторий по умолчанию ?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "выбран неправильный тэг" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "возвращение выбранных пакетов с веток" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "нечего делать" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "вот пакеты, которые будут возвращены" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "проверка хэша пакета" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "хэш не подсчитан для" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "неверная md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "ошибка при скачивании пакетов с зеркал" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "работа с веткой" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "обновление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "пакет возвращён" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Невозможно взаимодействовать с системной базой данных" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Подготовка к перемещению выбранных пакетов в" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Подготовка к копированию выбранных пакетов в" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Замечание" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1279,449 +1291,448 @@ msgstr "" "все старые пакеты с конфликтующими возможностями будут удалены из " "репозитория назначения ещё до добавления" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "новый тэг" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Обратные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "зависимость" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "переключение" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "невозможно подключить, пакет не найден, пропускем" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "переключение файла" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "загрузка информации из базы данных источника" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "введение информации в базу данных назначения" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "удаление записи из источника базы данных" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "успешно обслуженный атом" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Добавление мета-информации entropy в собранные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "добавление meta-информации entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "добавление завершено" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "удаление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Проверка целостности выбранных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Все пакеты в репозитории Entropy Packages будут проверены." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Вот список пакетов, которые будут проверены" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Работа на зеркале" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "проверка хэша" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "проверка списков" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "НЕ в порядке" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Здесь список испорченных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Зеркало" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Статистика" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Число проверенных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Число нормальных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Число испорченных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "локально" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "проверка статуса для" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "испорчен, накоплена контрольная сумма" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "проверены пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "нормальные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "испорченные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "скачанные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "проваленные загрузки" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "использование пакетов в репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Все пакеты в репозитории Entropy Packages будут проверены." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "недоступен" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Соединение пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Соединение пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "Маскированный пакет" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "доступно" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "закачано/игнорируется" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Начало загрузки недостающих файлов" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Поиск недостающих/испорченных файлов на другом зеркале" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Бинарные пакеты скачаны успешно." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "А вот эти пакеты не могут быть найдены онлайн" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Они не будут проверены" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Пожалуйста, установите Вашу ветку на" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "и попробуйте" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Копирование базы данных (если не существует)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Переключение пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Игнорирование" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "уже на ветке" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "миграционный цикл завершён" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Запуск теста осиротевших пакетов SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Сканирование пакета" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "больше ничего не найдено" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Строка пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Проверка" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Запускаем тест зависимостей" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Имеются ненайденные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Необходимо для" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "для репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Все зависимости удовлетворены. С чем и поздравляю." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Список испорченных и подсчитанных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Запись результатов в эти файлы" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "В системе все в порядке" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Подсчет библиотек через SPM, подождите немного" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Здесь - подсчитанные пакеты" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Нет подсчитанных пакетов" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Ваш репозиторий по умолчанию не инициализирован" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Вы желаете инициализировать Ваш репозиторий по умолчанию ?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Продолжаем с неинициализированным репозиторием" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "База данных Entropy уже заблокирована тобой :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Блокировка и синхронизация базы данных Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Таблица дополнительных репозиториев" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Разблокировано" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Заблокировано" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "невозможно заблокировать зеркало" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Каталог информации репозиториев испорчен" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Пропуск репозитория" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Инициализация пустой базы данных" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Центр управления репозиториями Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "успешно инициализировано" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "добавление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "добавлен пакет" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "версия" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "ручные зависимости для" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Имеются ненайденные зависимости" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Недостающие зависимости не найдены." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Вы уверены?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1729,149 +1740,150 @@ msgstr "Вы уверены?" msgid "Yes" msgstr "Да" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Определяется Meta-информация" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Блокировка баз данных завершена" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Обнаружено исключение, закрываем задания" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "репозиторий сервера" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "репозиторий сообщества" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Сессия Entropy Server Interface в репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "текущая ветка" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "тип" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Актуально сконфигурированные репозитории" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 #, fuzzy msgid "GPG key expired" msgstr "просрочено" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "пожалуйста, пофиксите" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "файлы конфигурации" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "проверка системы" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "имеются ещё не обновленные файлы конфигурации" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "К добавлению" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "делает строже правила касательно зависимостей" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "обновление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "добавление пакета" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "удаление пакета" @@ -1954,8 +1966,7 @@ msgstr "Обновление системной базы данных, испо #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Репозиторий" @@ -2353,7 +2364,7 @@ msgstr "Мульти-загрузка" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "пакеты" @@ -2411,16 +2422,8 @@ msgstr "Конфигурирование" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -2787,7 +2790,7 @@ msgstr "Репозитории обновлены успешно" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Всё замечательно" @@ -3082,79 +3085,79 @@ msgstr "проверка списков не удалась, попробуйт msgid "installing" msgstr "установка" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Запуск теста зависимостей" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "зависимость" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "зависимость" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "Испорчен клиент репозитория. Пожалуйста, восстановите из резервной копии." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "причина недоступна" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask пользователя" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "системные ключевые слова" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask пользователя" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "user repo package.keywords (все пакеты)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "user repo package.keywords" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords пользователя" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "полностью замаскировано (по ключевому слову?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "repository general packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "repository in branch packages.db.mask" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "user license.mask" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "user live unmask" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "user live mask" @@ -3163,90 +3166,90 @@ msgstr "user live mask" msgid "Entropy needs your attention" msgstr "Entropy требует Вашего внимания" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "у Entropy есть к Вам вопросы" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Отменено" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Выбранный номер" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Пожалуйста, выберите опцию" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Отменить всё" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Подтвердить" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Добавить предмет" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Добавить предмет" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Удалить предмет" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Показать текущий список" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Ваш выбор (введите номер и нажмите Enter)" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Вы не ввели номер." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Неправильное действие." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Строка к добавлению:" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Неправильная строка." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Номер элемента к удалению:" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Неправильный элемент." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Номер элемента к удалению:" @@ -3420,16 +3423,18 @@ msgstr "Идентификатор GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Заголовок" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3558,7 +3563,6 @@ msgstr "Но ты не" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Неправильные параметры" @@ -3609,7 +3613,7 @@ msgid "Error while creating package for" msgstr "Ошибка при создании пакета для" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Невозможно продолжить" @@ -3735,7 +3739,7 @@ msgstr "репозиторий недоступен" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Ключевое слово" @@ -3747,7 +3751,7 @@ msgstr "Ключевое слово" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Найдено" @@ -3758,7 +3762,6 @@ msgstr "Найдено" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "записей" @@ -3791,8 +3794,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3940,8 +3943,9 @@ msgstr "Поиск удалений" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Пакетов не найдено" @@ -4002,7 +4006,7 @@ msgstr "Поиск слота" msgid "Package Set Search" msgstr "Поиск набора пакетов" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Поиск тэга" @@ -4081,7 +4085,7 @@ msgstr "Загрузка" msgid "Checksum" msgstr "Контрольная сумма" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Зависимости" @@ -4201,7 +4205,7 @@ msgid "repository already enabled" msgstr "уже включено" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "репозиторий недоступен" @@ -4279,7 +4283,7 @@ msgstr "активно" msgid "never synced" msgstr "никогда не синхронизировалось" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Статус" @@ -4329,24 +4333,25 @@ msgstr "Ни одного репозитория не отмечено в" msgid "Unhandled exception" msgstr "Непредвиденное исключение" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Доска уведомлений недоступна" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Содержимое" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Ссылка" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Нажмите Enter, чтобы продолжить" @@ -4356,7 +4361,8 @@ msgstr "Нажмите Enter, чтобы продолжить" msgid "Exit" msgstr "Выход" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "Выберите один, набрав его название" @@ -4366,7 +4372,7 @@ msgid "Notice board" msgstr "Доска уведомлений" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Вы не root" @@ -4388,8 +4394,7 @@ msgid "Type a number." msgstr "Введите число." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Файл конфигурации" @@ -4508,7 +4513,7 @@ msgid "Unique files that would be automerged" msgstr "Специфические файлы, которые должны быть автоматически объединены" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Некорректный репозиторий" @@ -4526,7 +4531,7 @@ msgstr "Уже вошли в систему как" msgid "Please logout first" msgstr "Пожалуйста, сначала выйдите из системы." -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4534,7 +4539,7 @@ msgstr "Пожалуйста, сначала выйдите из системы. msgid "Username" msgstr "Имя пользователя" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4542,7 +4547,7 @@ msgstr "Имя пользователя" msgid "Password" msgstr "Пароль" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4554,7 +4559,7 @@ msgstr "Пожалуйста, залогиньтесь снова" msgid "Login aborted. Not logged in." msgstr "Ошибка логина. Не вошли в систему." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4777,7 +4782,7 @@ msgid "Installed packages database not available" msgstr "База данных установленных пакетов недоступна" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4793,15 +4798,15 @@ msgstr "Вакуум очистил базу данных системы" msgid "No System Databases found" msgstr "Не найдено баз данных системы" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Не найдено зарезервированных баз данных" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "Выберите базу данных, которую хотите восстановить" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Инструмент восстановления базы данных по установленным пакетам Entropy" @@ -5096,28 +5101,23 @@ msgstr "Окей, я сдаюсь. Ты неисправим." msgid "Go to hell." msgstr "Иди к чёрту." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Основные опции" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "выдает этот мануал" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "отображает версию" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "деактивирует цветное отображение" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "деактивирует цветное отображение" @@ -5127,8 +5127,7 @@ msgstr "деактивирует цветное отображение" msgid "print a bash completion script to stdout" msgstr "записывает испорченные файлы в stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Опции приложения" @@ -5185,7 +5184,7 @@ msgstr "просмотрщик доски уведомлений репозит msgid "show respositories status" msgstr "показать статус репозиториев" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "найти пакеты в репозиториях" @@ -5225,8 +5224,7 @@ msgstr "обновить систему с самыми последними д #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "спрашивать перед любыми изменениями" @@ -5234,8 +5232,7 @@ msgstr "спрашивать перед любыми изменениями" msgid "just download packages" msgstr "просто загрузить пакеты" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "показывать только то, что будет сделано" @@ -5421,7 +5418,7 @@ msgstr "удалить один или более пакетов" msgid "configure one or more installed packages" msgstr "конфигурирует один или более установленных пакетов" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "ищет неудовлетворенные зависимости" @@ -5437,7 +5434,7 @@ msgstr "сортирует пакеты по размеру на диске" msgid "look for missing libraries" msgstr "ищет испорченные библиотеки" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "записать результаты в файлы" @@ -5465,7 +5462,7 @@ msgstr "делает различные запросы к репозиторию msgid "search from what package a file belongs" msgstr "искать, какому пакету принадлежит файл" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "показать лог изменений пакетов" @@ -5473,13 +5470,11 @@ msgstr "показать лог изменений пакетов" msgid "search what packages depend on the provided atoms" msgstr "искать пакеты, зависящие от предоставленных атомов" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "искать пакеты по описанию" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "показывает файлы, относящиеся к предоставленным атомам" @@ -5522,8 +5517,7 @@ msgstr "Установленные пакеты" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" "показывает библиотеки рабочего цикла, требуемые предоставленными атомами" @@ -5540,8 +5534,7 @@ msgstr "показать дерево удалений для выбранных msgid "show atoms needing the provided libraries" msgstr "показывает атомы, требующие предоставленные библиотеки" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "поиск доступных наборов пакетов" @@ -5553,27 +5546,24 @@ msgstr "показать пакеты, принадлежащие указанн msgid "show packages owning the provided tags" msgstr "показать пакеты, принадлежащие указанным тэгам" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "показать, какие пакеты зависят от предоставленных атомов" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "показать больше деталей" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "отображает результаты через скрипты" @@ -5661,7 +5651,7 @@ msgstr "" "генерирует базу данных установленных пакетов с использованием файлов системы " "[последняя надежда]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 #, fuzzy msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5684,355 +5674,22 @@ msgstr "" "Entropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "обслуживает функции, связанные с сообществом" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "функции управления для репозиториев сообщества" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "сканирование системы на предмет недавно скомпилированных пакетов" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "проанализировать директорию Entropy Store напрямую" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "перепаковка определенных атомов" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "не спрашивать ничего, кроме критических моментов" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "управлять только выбранными атомами" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"добавить бинарные пакеты в репозиторий помимо уязвимых рамок (мультипакеты)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "функции управления зеркалами репозиториев сообщества" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "синхронизировать пакеты, базу данных и привести все в порядок" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "синхронизировать все сконфигурированные репозитории" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "синхронизировать пакеты с главными зеркалами" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "также верифицировать целостность пакетов" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "синхронизировать текущую базу данных репозитория с главными зеркалами" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "заблокировать текущую базу данных репозитория (для сервера)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "разблокировать текущую базу данных репозитория (для сервера)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "заблокировать текущую базу данных репозитория (для клиента)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "разблокировать текущую базу данных репозитория (для клиента)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "показать текущий статус блокировки" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" -"удалить бинарные пакеты, которых нет в репозитории и срок хранения которых " -"истёк" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Подсчёт доступных пакетов для" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "управлять репозиторием" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(ре)инициализировать текущую базу данных репозиториев" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "не добавлять базу данных с использованием пакетов с зеркал" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(пере)создать базу данных для указанного репозитория" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "вручную создать бамп версии из текущей базы данных репозитория" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "синхронизировать базу данных" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "сменить пакеты старых веток на пакеты новой ветки" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "удаляет указанные атомы из текущей базы данных репозитория" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" -"удаляет указанные загруженные атомы (или все, если не указано ни одного " -"атома) " - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "создает пустую базу данных репозитория по указанному пути" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "переключить на указанную ветку указанные атомы (или все)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "проверяет целостность предоставленных атомов (или всех)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "создать резервную копию текущей базы данных репозитория" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "возвращает ранее зарезервированную базу данных репозитория" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "активировать выбранный репозиторий" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "деактивировать выбранный репозиторий" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "показать текущий статус Интерфейса Сервера" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Установленные пакеты" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "обслуживать вручную зависимости пакетов" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" -"клонировать пакет внутри репозитория, прописывая его произвольным тэгом" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "переместить пакеты в другой репозиторий" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "установить зависимости" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "копировать пакеты в другой репозиторий" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "установить репозиторий по умолчанию" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "Попробуйте обновить репозитории и попробовать снова" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Актуально сконфигурированные репозитории" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "отсутствует в списках в текущей базе данных репозиториев!!" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Сортировать по репозиторию" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Репозиторий назначения" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "поискать в базе данных репозиториев сообщества" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "показать, какому пакету принадлежат предоставленные файлы" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "показать, какие пакеты зависят от предоставленных атомов" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "показать все пакеты в репозитории по умолчанию" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "искать пакеты в базе данных репозитория по умолчанию" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "показать пакеты с определёнными тэгами" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "показать пакеты с определёнными тэгами" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "функции пакетного менеджера источника" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "функция компиляции" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "компилировать пакеты, относящиеся к предоставленным категориям" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "просто показать список пакетов" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "не заполняйте слоты старых пакетов" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "компилировать пакеты с именами предоставленного набора пакетов" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "пересобрать всё" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "запустить обновление базы данных, если всё прошло хорошо" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "запустить синхронизацию с зеркалом, если всё прошло нормально" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "искать осиротевшие пакеты в SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "функции обслуживания доски уведомлений" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "добавить новость на доску уведомлений" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "удалить новость с доски уведомлений" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "прочитать актуальную доску уведомлений" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "искать неудовлетворенные зависимости в репозиториях сообщества" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "проверить целостность файлов локального пакета" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "обслуживает элементы содержимого, сгенерированного пользователем" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "залогиниться в определённый репозиторий" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "разлогиниться из определённого репозитория" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "принудительно запустить действие" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -6040,80 +5697,69 @@ msgstr "" "управлять документами пакетов для выбранного репозитория (комментарии, " "файлы, видеоклипы)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "получить доступные документы по выбранному ключу пакета (пример: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "добавить новый документ для выбранного ключа пакета (пример: x11-libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "удалить документы из базы данных, используя их наименования" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "управлять оценками пакетов для выбранного репозитория" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "получить голос для указанного ключа пакета (пример: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "добавить голос для выбранного ключа пакета (пример: x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "обслуживает кэш Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "очистить кэш Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "удалить загруженные пакеты и очистить временные директории" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "показать информацию системы" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Тебе необходимо установить sys-apps/entropy-server :-) Так сделай это !" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Тебе необходимо установить/обновить sys-apps/entropy-server :-) Так сделай " -"это !" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "недостаточно параметров" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 #, fuzzy msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "База данных по инсталлированным пакетам не найдена или испорчена. " "Пожалуйста, сгенерируйте её, используя инструменты 'equo database'" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." @@ -6121,25 +5767,25 @@ msgstr "" "Привет. Меня зовут БагРепортер. Мне очень неприятно об этом говорить, но, " "увы, Equo накрылся медным тазом. Ну и это... ты знаешь, дерьмо случается." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Но при этом Вы могли бы кое-что сделать для того, чтобы Equo стал менее " "глючной программой." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "-- КАК МИНИМУМ ПОТОМУ, ЧТОБЫ Я НЕ ХОЧУ, ЧТОБЫ ТЕБЕ ПРИШЛОСЬ ПОСЫЛАТЬ ЭТОТ " "ЧЕРТОВ ОТЧЕТ ПО СТО РАЗ --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Теперь я покажу тебе, что случилось. Не паникуй, я здесь, чтобы помочь тебе. " -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -6148,11 +5794,11 @@ msgstr "" "скопируй эту ошибку и отправь на lxnay@sabayon.org. И не вешай нос, это всё " "ерунда." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Ну и, конечно, ты в интернете..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 #, fuzzy msgid "" "Erm... Can I send the error, along with some information\n" @@ -6162,11 +5808,11 @@ msgstr "" "Гхм... могу я послать отчет об ошибке с некоторыми данными о твоем железе " "своим создателям - может, они заодно меня подправят? (твой IP будет записан)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ну ладно, ладно, ладно, хорошо, ХОРОШО, ИЗВИНИ!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" @@ -6174,19 +5820,19 @@ msgstr "" "Когда будешь связываться (и активно общаться с техподдержкой), ответь заодно " "на нижеуказанные вопросы:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Ваше полное имя:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Ваш адрес E-Mail:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Чего ж ты такого наделал:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." @@ -6194,7 +5840,7 @@ msgstr "" "Спасибо тебе огромное. Данные об ошибке отправлены и, если всё будет " "нормально, проблема будет решена как можно раньше." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6203,11 +5849,11 @@ msgstr "" "Эээ... Невозможно отослать репорт. Я сохранил ошибку в /tmp/equoerror.txt. " "Когда сочтёшь нужным, отошли этот файл на lxnay@sabayon.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6216,7 +5862,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Делать нечего" @@ -6365,10 +6010,7 @@ msgstr "сломан" msgid "atom" msgstr "атом" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "в" @@ -6394,6 +6036,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Здесь перечислены пакеты, которые должны быть удалены" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Здесь перечислены пакеты, которые должны быть удалены" @@ -6628,7 +6271,7 @@ msgstr "Установка завершена" msgid "These are the packages that would be masked" msgstr "Здесь пакеты, которые должны быть отмечены" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "Желаете ли продолжить?" @@ -6666,8 +6309,7 @@ msgstr "Удаление запрещено" msgid "Would you like to calculate dependencies ?" msgstr "Желаете ли подсчитать зависимости?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Вы желаете удалить их сейчас ?" @@ -6719,7 +6361,10 @@ msgstr "10 секунд" msgid "Libraries/Executables statistics" msgstr "Статистика библиотек/исполняемых файлов" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Не подсчитано" @@ -6727,760 +6372,1040 @@ msgstr "Не подсчитано" msgid "Would you like to install them ?" msgstr "Вы желаете их инсталлировать ?" -#: ../../server/reagent.py:42 +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "show current repositories status" -msgstr "показать статус репозиториев" +msgid "available tests" +msgstr "доступно" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "поищите в базах данных репозитория" - -#: ../../server/reagent.py:55 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "искать пакеты в базе данных репозитория по умолчанию" +msgid "dependencies test" +msgstr "Тест зависимостей" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(ре)инициализировать текущую базу данных репозиториев" +msgid "libraries test" +msgstr "Тест библиотек" -#: ../../server/reagent.py:77 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "do not include reverse dependencies" -msgstr "Невозможно найти необходимые зависимости" +msgid "dump results to file" +msgstr "записать результаты в файлы" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "переключить репозиторий на выбранную ветку" - -#: ../../server/reagent.py:81 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "проверяет целостность предоставленных атомов (или всех)" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "клонировать пакет с присвоением ему произвольного тэга" - -#: ../../server/reagent.py:89 -#, fuzzy -msgid "mask given package in given repository" -msgstr "использование пакетов в репозитории" - -#: ../../server/reagent.py:90 -#, fuzzy -msgid "unmask given packages in given repository" -msgstr "использование пакетов в репозитории" - -#: ../../server/reagent.py:116 -#, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "искать осиротевшие пакеты в SPM" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" -msgstr "искать осиротевшие пакеты в SPM" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" +msgid "library linking test (using repository metadata)" msgstr "ищет испорченные библиотеки" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "ищет испорченные библиотеки" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "удалить скачанные пакеты и очистить временные папки" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "Начало синхронизации информации между зеркалами (пакеты/база данных)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Отмена !" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "ожалуйста, введите сообщение подтверждения" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "еобходимо ли мне продолжать при пустой процедуре ?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Выйти/Подтвердить" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Текст уведомления" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "Релевантный URL (опционально)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Доска уведомлений репозиториев, ввод новой записи" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Выберите ту, которую Вы хотите удалить" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Вы уверены, что хотите это удалить?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Начало блокировки баз данных зеркал" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Произошла проблема на последнем зеркале" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Восстановление завершено" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Начало разблокирования баз данных зеркал" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Восстановление завершено" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Начало блокировки загрузки баз данных зеркал" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Блокировка загрузки зеркал завершена" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Начало разблокировки загрузки баз данных зеркал" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Разблокировка загрузки зеркал завершена" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "БАЗА ДАННЫХ" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "ЗАГРУЗКА" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "в репозиториях" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Ошибки синхронизации базы данных, невозможно продолжить" - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Подсчёт доступных пакетов для" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Статус репозитория удаленной базы данных Entropy" +msgid "package names" +msgstr "Атомы пакетов" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Хост" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Версия" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Текущая локальная версия базы данных -" +msgid "verify local packages integrity" +msgstr "также верифицировать целостность пакетов" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "выбор, с какой веткой работать" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "функции обработки пакетов репозиториев" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "синхронизация пакетов репозиториев через основные зеркала" - -#: ../../server/activator.py:61 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "repository handling functions" -msgstr "функции обработки пакетов репозиториев" +msgid "verify remote packages integrity" +msgstr "также верифицировать целостность пакетов" -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Importing keypair for repository" -msgstr "Некорректный репозиторий" +msgid "execute query" +msgstr "Исполнить копию" -#: ../../server/server_key.py:125 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Another keypair already exists for repository" -msgstr "отсутствует в списках в текущей базе данных репозиториев!!" +msgid "available queries" +msgstr "доступно" -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "package.mask пользователя" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Вы должны установить их как можно раньше" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Репозиторий назначения" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Сортировать по репозиторию" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "отсутствует в списках в текущей базе данных репозиториев!!" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Некорректный репозиторий" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Некорректный репозиторий" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Некорректный репозиторий" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "вошел в репозиторий" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Введите URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Информация репозиториев" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "Некорректный репозиторий" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "активировать выбранный репозиторий" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "Вы готовы?" +msgid "tag name" +msgstr "Имя хоста" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "недоступен" +msgid "show libraries (.so) required by matched packages" +msgstr "Здесь - подсчитанные пакеты" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "показать, какие пакеты зависят от предоставленных атомов" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "использование пакетов в репозитории" +msgid "include build dependencies" +msgstr "Невозможно найти необходимые зависимости" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Имена пакетов" +msgid "search through package sets" +msgstr "поиск доступных наборов пакетов" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_key.py:377 -msgid "Key size" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Имя набора пакетов" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "искать пакеты по описанию" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Информация репозиториев" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Описание пакета" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Ничего не найдено" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "библиотеки" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Дата создания" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "ни одного пакета не выбрано." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Включение" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Включено" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "уже включено" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Отключение" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Отключено" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "уже отключено" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 +#: ../../server/eit/commands/query.py:313 #, fuzzy -msgid "Invalid syntax." -msgstr "Неправильная строка." +msgid "sets found" +msgstr "юзер не найден" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/query.py:347 #, fuzzy -msgid "No valid repository specified." -msgstr "Ни одного корректного репозитория не выбрано." +msgid "packages found" +msgstr "Пакетов не найдено" -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Невозможно подсчитать" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 +#: ../../server/eit/commands/query.py:356 #, fuzzy -msgid "No packages selected." -msgstr "Ни одного пакета не выбрано" +msgid "miscellaneous package metadata queries" +msgstr "принуждение к обновлению мета-информации пакетов" -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "зависимости пакетов" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Без зависимостей" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Тест зависимостей" - -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "ручные зависимости для" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Тест зависимостей" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Подтвердить" - -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "зависимости, определяемые вручную, успешно добавлены" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Маскировка пакета" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Распаковка" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Подсчёт пакетов к удалению" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Недостаточно параметров" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Здесь пакеты, которые должны быть удалены из базы данных" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Удаление выбранных пакетов" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Пакеты удалены. Чтобы удалить бинарные пакеты, запустите активатор." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Поиск введённых пакетов для удаления" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Здесь введённые пакеты, отобранные на удаление" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" -"При переключении ветки, будьте уверены, что имеете ваши пакеты в " -"синхронизации" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Подсчёт пакетов, которые будут отмечены" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Здесь пакеты, которые должны быть отмечены" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Ни одного корректного репозитория не выбрано." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "Выбраны некорректные репозитории." - -#: ../../server/server_reagent.py:738 -#, fuzzy -msgid "Entropy repository has been initialized" -msgstr "Ваш репозиторий по умолчанию не инициализирован" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Создание пустой базы данных в" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Невозможно перезаписать уже существующий файл" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Создание резервной копии базы данных репозитория" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Нет корректных пакетов к перепаковке" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Сканирование базы данных на различия" - -#: ../../server/server_reagent.py:921 -#, fuzzy -msgid "Invalid atom" -msgstr "Неправильное действие." - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "Zarro thinggz totoo" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Вот пакеты, статус которых должен быть изменён на \"введено\"" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "Желаете ли трансформировать их сейчас?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Трансформирование из базы данных" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Трансформация базы данных завершена" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "просрочено" - -#: ../../server/server_reagent.py:960 -#, fuzzy -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Выберите, какой набор пакетов Вы хотите удалить" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -#, fuzzy -msgid "Remove this package?" -msgstr "Удалить пакеты" - -#: ../../server/server_reagent.py:989 -#, fuzzy -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Выберите, какой набор пакетов Вы хотите добавить" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -#, fuzzy -msgid "Add this package?" -msgstr "Маскировать данный пакет" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Здесь перечислены пакеты, которые будут установлены/обновлены" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -#, fuzzy -msgid "warning" -msgstr "Осторожно" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Желаете ли запаковать их сейчас?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "внутри" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Сжатие пакетов" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Игнорируем испорченную запись Spm, будьте добры её перекомпилировать" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Делать нечего, проверьте позже." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "Обслуженные записи" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 #, fuzzy msgid "local revision" msgstr "версия" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 #, fuzzy msgid "stored packages" msgstr "Маскированный пакет" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "скачанные пакеты" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "Маскированный пакет" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "К добавлению" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "переключение" -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Здесь перечислены пакеты, которые должны быть установлены" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Не найдено ни одного набора пакетов" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "набор пакетов не найден" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Ничего не найдено" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "показать статус репозиториев" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "испорченные пакеты" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "показать установленные пакеты" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "недоступен" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "пакеты" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "найти пакеты в репозиториях" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "найти пакеты в репозиториях" + +#: ../../server/eit/commands/init.py:59 +#, fuzzy +msgid "Entropy repository has been initialized" +msgstr "Ваш репозиторий по умолчанию не инициализирован" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Текущий репозиторий" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Репозиторий назначения" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "зависимости пакетов" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "переместить пакеты в другой репозиторий" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Имя набора пакетов" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Ничего не найдено" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "ошибка сокета" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Версия репозитория" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "показать статус репозиториев" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "переместить пакеты в другой репозиторий" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "выдает этот мануал" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "В репозиторий" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Пропуск репозитория" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Версия репозитория" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Обновить репозитории" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Выберите репозиторий" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Подтвердить сообщение" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "ожалуйста, введите сообщение подтверждения" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Статус репозитория удаленной базы данных Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Хост" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Удалённо" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "локально" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Отмена !" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Получить информацию пакета" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Показать доступные пакеты" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Добавить запись на доску уведомлений" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Удалить запись с доски уведомлений" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Доска уведомлений" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Введите URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Выберите ту, которую Вы хотите удалить" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Вы уверены, что хотите это удалить?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Выйти/Подтвердить" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Получить доску уведомлений репозитория" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "репозиторий" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Пропуск репозитория" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "активировать выбранный репозиторий" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Установленные пакеты" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Удаление выбранных пакетов" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Невозможно подсчитать" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Нет корректных пакетов к перепаковке" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Сканирование базы данных на различия" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Установка пакета" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Zarro thinggz totoo" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "добавлено" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Трансформирование из базы данных" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Трансформация базы данных завершена" +msgid "Action completed" +msgstr "добавление завершено" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "просрочено" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Выберите, какой набор пакетов Вы хотите удалить" +msgid "Select packages for removal" +msgstr "Поиск введённых пакетов для удаления" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +#, fuzzy +msgid "Remove this package?" +msgstr "Удалить пакеты" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Подсчёт к удалению из базы данных репозитория" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Выберите, какой набор пакетов Вы хотите добавить" +msgid "Select packages to add" +msgstr "Некоторые пакеты маскированы" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +#, fuzzy +msgid "Add this package?" +msgstr "Маскировать данный пакет" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Они будут добавлены в системную базу данных" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +#, fuzzy +msgid "warning" +msgstr "Осторожно" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Желаете ли запаковать их сейчас?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "внутри" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Сжатие пакетов" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Игнорируем испорченную запись Spm, будьте добры её перекомпилировать" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Делать нечего, проверьте позже." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "Обслуженные записи" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Установленные пакеты" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "недоступен" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Пропуск репозитория" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "провести подсчет по пакету в репозиториях" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "активировать выбранный репозиторий" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Загрузка предоставленных репозиторием ключевых слов пакета" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "показать текущий статус блокировки" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Таблица дополнительных репозиториев" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Сервер" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "В репозиторий" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "В репозитории" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "показать, какие пакеты зависят от предоставленных атомов" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Подсчёт доступных пакетов для" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Подсчёт доступных пакетов для" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Все репозитории уже обновлены до последней версии." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Подсчёт доступных пакетов для" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "файл не найден" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "показывает файлы, относящиеся к предоставленным атомам" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "активировать выбранный репозиторий" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "Невозможно найти необходимые зависимости" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "переместить пакеты в другой репозиторий" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "зависимости пакетов" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Без зависимостей" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Тест зависимостей" + +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "ручные зависимости для" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Тест зависимостей" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Подтвердить" + +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "зависимости, определяемые вручную, успешно добавлены" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Установленные пакеты" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "зависимости пакетов" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Конфигурирование пакета" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "копировать пакеты в другой репозиторий" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Распаковка пакета зависимостей" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "принудительно запустить действие" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Попробуйте обновить репозитории и попробовать снова" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Установленные пакеты" + +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Имена пакетов" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "отдаленная база данных внезапно заблокирована." + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Некорректный репозиторий" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "вошел в репозиторий" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Введите URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Информация репозиториев" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Вы должны установить их как можно раньше" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Некорректный репозиторий" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "активировать выбранный репозиторий" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Вы готовы?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "недоступен" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "использование пакетов в репозитории" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Имена пакетов" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Дата создания" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Некорректный репозиторий" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Вы должны установить их как можно раньше" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Репозиторий назначения" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Сортировать по репозиторию" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "отсутствует в списках в текущей базе данных репозиториев!!" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Некорректный репозиторий" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Некорректный репозиторий" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "управлять репозиторием" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Атомы пакетов" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Невозможно установить директорию кэша" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "не поддерживается" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Установка пакета" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "найти пакеты в репозиториях" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Невозможно переключить ветку" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "ветка" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Неправильное действие." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "управлять репозиторием" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Текущий репозиторий" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7537,125 +7462,131 @@ msgstr "Имеются неполные наборы пакетов, продо msgid "Application" msgstr "Приложения" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Успешно вошли в систему как" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "не поддерживается" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Голос зарегистрирован успешно" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Ошибка при регистрации голоса" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Уже удалено" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Приложения" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Приложения вне групп" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "Пакеты к обновлению до более старой версии" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Опции приложения" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Обновления приложений" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Опции приложения" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Предлагается" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Расположение" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Версия" -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Безопасность" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Приложения" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 #, fuzzy msgid "Please wait, loading..." msgstr "Пожалуйста, подождите" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Репозитории обновляются" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Нет уведомлений" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Нечего показывать" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Имя файла" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "установить репозиторий по умолчанию" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Активный" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Обновить" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Версия" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Имя репозитория" @@ -8076,6 +8007,10 @@ msgstr "Некоторые пакеты маскированы" msgid "Masked package" msgstr "Маскированный пакет" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Включено" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Пожалуйста, подтвердите вышеуказанные действия" @@ -10160,12 +10095,481 @@ msgstr "Уведомитель об обновлениях приложений msgid "_Load Package Manager" msgstr "_Загрузить пакетный менеджер" -#~ msgid "Entropy Server interface must be run as root" -#~ msgstr "Серверный интерфейс Entropy должен быть запущен от root" +#~ msgid "handles community-side features" +#~ msgstr "обслуживает функции, связанные с сообществом" + +#~ msgid "community repositories management functions" +#~ msgstr "функции управления для репозиториев сообщества" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "сканирование системы на предмет недавно скомпилированных пакетов" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "проанализировать директорию Entropy Store напрямую" + +#~ msgid "repackage the specified atoms" +#~ msgstr "перепаковка определенных атомов" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "не спрашивать ничего, кроме критических моментов" + +#~ msgid "manage only the specified atoms" +#~ msgstr "управлять только выбранными атомами" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "добавить бинарные пакеты в репозиторий помимо уязвимых рамок " +#~ "(мультипакеты)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "функции управления зеркалами репозиториев сообщества" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "синхронизировать пакеты, базу данных и привести все в порядок" + +#~ msgid "sync all the configured repositories" +#~ msgstr "синхронизировать все сконфигурированные репозитории" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "синхронизировать пакеты с главными зеркалами" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "синхронизировать текущую базу данных репозитория с главными зеркалами" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "заблокировать текущую базу данных репозитория (для сервера)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "разблокировать текущую базу данных репозитория (для сервера)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "заблокировать текущую базу данных репозитория (для клиента)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "разблокировать текущую базу данных репозитория (для клиента)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "удалить бинарные пакеты, которых нет в репозитории и срок хранения " +#~ "которых истёк" #, fuzzy -#~ msgid "reset error" -#~ msgstr "ошибка сокета" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Подсчёт доступных пакетов для" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(ре)инициализировать текущую базу данных репозиториев" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "не добавлять базу данных с использованием пакетов с зеркал" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(пере)создать базу данных для указанного репозитория" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "вручную создать бамп версии из текущей базы данных репозитория" + +#~ msgid "synchronize the database" +#~ msgstr "синхронизировать базу данных" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "сменить пакеты старых веток на пакеты новой ветки" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "удаляет указанные атомы из текущей базы данных репозитория" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "" +#~ "удаляет указанные загруженные атомы (или все, если не указано ни одного " +#~ "атома) " + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "создает пустую базу данных репозитория по указанному пути" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "переключить на указанную ветку указанные атомы (или все)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "проверяет целостность предоставленных атомов (или всех)" + +#~ msgid "backup current repository database" +#~ msgstr "создать резервную копию текущей базы данных репозитория" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "возвращает ранее зарезервированную базу данных репозитория" + +#~ msgid "enable the specified repository" +#~ msgstr "активировать выбранный репозиторий" + +#~ msgid "disable the specified repository" +#~ msgstr "деактивировать выбранный репозиторий" + +#~ msgid "show the current Server Interface status" +#~ msgstr "показать текущий статус Интерфейса Сервера" + +#, fuzzy +#~ msgid "handle packages dependencies" +#~ msgstr "обслуживать вручную зависимости пакетов" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "клонировать пакет внутри репозитория, прописывая его произвольным тэгом" + +#~ msgid "pulls dependencies in" +#~ msgstr "установить зависимости" + +#~ msgid "set the default repository" +#~ msgstr "установить репозиторий по умолчанию" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Актуально сконфигурированные репозитории" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Сортировать по репозиторию" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Репозиторий назначения" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "поискать в базе данных репозиториев сообщества" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "показать, какому пакету принадлежат предоставленные файлы" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "показать, какие пакеты зависят от предоставленных атомов" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "показать все пакеты в репозитории по умолчанию" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "искать пакеты в базе данных репозитория по умолчанию" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "показать пакеты с определёнными тэгами" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "показать пакеты с определёнными тэгами" + +#~ msgid "source package manager functions" +#~ msgstr "функции пакетного менеджера источника" + +#~ msgid "compilation function" +#~ msgstr "функция компиляции" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "компилировать пакеты, относящиеся к предоставленным категориям" + +#~ msgid "just list packages" +#~ msgstr "просто показать список пакетов" + +#~ msgid "do not pull old package slots" +#~ msgstr "не заполняйте слоты старых пакетов" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "компилировать пакеты с именами предоставленного набора пакетов" + +#~ msgid "rebuild everything" +#~ msgstr "пересобрать всё" + +#~ msgid "run database update if all went fine" +#~ msgstr "запустить обновление базы данных, если всё прошло хорошо" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "запустить синхронизацию с зеркалом, если всё прошло нормально" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "искать осиротевшие пакеты в SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "функции обслуживания доски уведомлений" + +#~ msgid "add a news item to the notice board" +#~ msgstr "добавить новость на доску уведомлений" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "удалить новость с доски уведомлений" + +#~ msgid "read the current notice board" +#~ msgstr "прочитать актуальную доску уведомлений" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "искать неудовлетворенные зависимости в репозиториях сообщества" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "проверить целостность файлов локального пакета" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Тебе необходимо установить sys-apps/entropy-server :-) Так сделай это !" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Тебе необходимо установить/обновить sys-apps/entropy-server :-) Так " +#~ "сделай это !" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "показать статус репозиториев" + +#~ msgid "do some searches into repository databases" +#~ msgstr "поищите в базах данных репозитория" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "искать пакеты в базе данных репозитория по умолчанию" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(ре)инициализировать текущую базу данных репозиториев" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "переключить репозиторий на выбранную ветку" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "проверяет целостность предоставленных атомов (или всех)" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "клонировать пакет с присвоением ему произвольного тэга" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "использование пакетов в репозитории" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "использование пакетов в репозитории" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "искать осиротевшие пакеты в SPM" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "искать осиротевшие пакеты в SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "ищет испорченные библиотеки" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "удалить скачанные пакеты и очистить временные папки" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Начало синхронизации информации между зеркалами (пакеты/база данных)" + +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "еобходимо ли мне продолжать при пустой процедуре ?" + +#~ msgid "Notice text" +#~ msgstr "Текст уведомления" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "Релевантный URL (опционально)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Доска уведомлений репозиториев, ввод новой записи" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Начало блокировки баз данных зеркал" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Произошла проблема на последнем зеркале" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Восстановление завершено" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Начало разблокирования баз данных зеркал" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Восстановление завершено" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Начало блокировки загрузки баз данных зеркал" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Блокировка загрузки зеркал завершена" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "Начало разблокировки загрузки баз данных зеркал" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Разблокировка загрузки зеркал завершена" + +#~ msgid "DATABASE" +#~ msgstr "БАЗА ДАННЫХ" + +#~ msgid "DOWNLOAD" +#~ msgstr "ЗАГРУЗКА" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "в репозиториях" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Ошибки синхронизации базы данных, невозможно продолжить" + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Текущая локальная версия базы данных -" + +#~ msgid "choose on what branch operating" +#~ msgstr "выбор, с какой веткой работать" + +#~ msgid "package repositories handling functions" +#~ msgstr "функции обработки пакетов репозиториев" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "синхронизация пакетов репозиториев через основные зеркала" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "функции обработки пакетов репозиториев" + +#~ msgid "no package specified." +#~ msgstr "ни одного пакета не выбрано." + +#~ msgid "Enabling" +#~ msgstr "Включение" + +#~ msgid "already enabled" +#~ msgstr "уже включено" + +#~ msgid "Disabling" +#~ msgstr "Отключение" + +#~ msgid "Disabled" +#~ msgstr "Отключено" + +#~ msgid "already disabled" +#~ msgstr "уже отключено" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Неправильная строка." + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Ни одного корректного репозитория не выбрано." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Ни одного пакета не выбрано" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Маскировка пакета" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Распаковка" + +#~ msgid "Matching packages to remove" +#~ msgstr "Подсчёт пакетов к удалению" + +#~ msgid "Not enough parameters" +#~ msgstr "Недостаточно параметров" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Здесь пакеты, которые должны быть удалены из базы данных" + +#~ msgid "Removing selected packages" +#~ msgstr "Удаление выбранных пакетов" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "Пакеты удалены. Чтобы удалить бинарные пакеты, запустите активатор." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Здесь введённые пакеты, отобранные на удаление" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "" +#~ "При переключении ветки, будьте уверены, что имеете ваши пакеты в " +#~ "синхронизации" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Подсчёт пакетов, которые будут отмечены" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Здесь пакеты, которые должны быть отмечены" + +#~ msgid "No valid repositories specified." +#~ msgstr "Ни одного корректного репозитория не выбрано." + +#~ msgid "Invalid repositories specified." +#~ msgstr "Выбраны некорректные репозитории." + +#~ msgid "Creating empty database to" +#~ msgstr "Создание пустой базы данных в" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Невозможно перезаписать уже существующий файл" + +#~ msgid "Bumping Repository database" +#~ msgstr "Создание резервной копии базы данных репозитория" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Вот пакеты, статус которых должен быть изменён на \"введено\"" + +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Желаете ли трансформировать их сейчас?" + +#~ msgid "Transforming from database" +#~ msgstr "Трансформирование из базы данных" + +#~ msgid "Database transform complete" +#~ msgstr "Трансформация базы данных завершена" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Выберите, какой набор пакетов Вы хотите удалить" + +#, fuzzy +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Выберите, какой набор пакетов Вы хотите добавить" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Здесь перечислены пакеты, которые будут установлены/обновлены" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Здесь перечислены пакеты, которые должны быть установлены" + +#~ msgid "No package sets found" +#~ msgstr "Не найдено ни одного набора пакетов" + +#~ msgid "package set not found" +#~ msgstr "набор пакетов не найден" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Трансформация базы данных завершена" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Выберите, какой набор пакетов Вы хотите удалить" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Выберите, какой набор пакетов Вы хотите добавить" + +#~ msgid "Entropy Server interface must be run as root" +#~ msgstr "Серверный интерфейс Entropy должен быть запущен от root" #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Невозможно подтвердить блокировку ресурсов Entropy" @@ -10337,9 +10741,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "empty username" #~ msgstr "пустое имя пользователя" -#~ msgid "user not found" -#~ msgstr "юзер не найден" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "Вам необходимо залогиниться на сайте, чтобы обновить формат Вашего пароля" @@ -10418,10 +10819,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "EAPI3 Service status" #~ msgstr "Статус службы EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "отдаленная база данных внезапно заблокирована." - #~ msgid "EAPI3 Service" #~ msgstr "Служба EAPI3" @@ -10784,9 +11181,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "From repository" #~ msgstr "Из репозитория" -#~ msgid "To repository" -#~ msgstr "В репозиторий" - #~ msgid "Copy instead of move?" #~ msgstr "Копировать вместо перемещения?" @@ -10837,18 +11231,9 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Check mode" #~ msgstr "Режим проверки" -#~ msgid "Get repository notice board" -#~ msgstr "Получить доску уведомлений репозитория" - -#~ msgid "Remove notice board entry" -#~ msgstr "Удалить запись с доски уведомлений" - #~ msgid "Entry Identifiers" #~ msgstr "Идентификаторы записей" -#~ msgid "Add notice board entry" -#~ msgstr "Добавить запись на доску уведомлений" - #~ msgid "Notice link" #~ msgstr "Ссылка на замечание" @@ -10933,9 +11318,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Previous database copied to file" #~ msgstr "Предыдущая база данных скопирована в файл" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Все репозитории уже обновлены до последней версии." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "репозитории были уже обновлены до последней версии, остальные уже " @@ -11257,9 +11639,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "No valid repositories" #~ msgstr "Нет действительных репозиториев" -#~ msgid "not available" -#~ msgstr "недоступен" - #~ msgid "is empty" #~ msgstr "пуст" @@ -11342,9 +11721,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Execute" #~ msgstr "Исполнить" -#~ msgid "Destination repository" -#~ msgstr "Репозиторий назначения" - #~ msgid "Copy/move packages" #~ msgstr "Копировать/переместить пакеты" @@ -11417,9 +11793,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Невозможно переместить/скопировать пакеты из разных репозиториев" -#~ msgid "Execute copy" -#~ msgstr "Исполнить копию" - #~ msgid "Entropy packages move/copy" #~ msgstr "Копирование/перемещение пакетов Entropy" @@ -11432,9 +11805,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Insert your new notice board entry" #~ msgstr "Введите Вашу новую запись доски уведомлений" -#~ msgid "Server" -#~ msgstr "Сервер" - #~ msgid "current revision" #~ msgstr "текущая версия" @@ -11453,9 +11823,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Choose the execution mode" #~ msgstr "Выбрать режим исполнения" -#~ msgid "Commit message" -#~ msgstr "Подтвердить сообщение" - #~ msgid "Pretend mode" #~ msgstr "Мнимый режим" @@ -11531,9 +11898,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Выберите репозиторий" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Выберите репозиторий, в котором хотели бы поискать" @@ -11552,9 +11916,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "You must now either press the" #~ msgstr "Сейчас Вы должны также нажать" -#~ msgid "Update Repositories" -#~ msgstr "Обновить репозитории" - #~ msgid "or the" #~ msgstr "или" @@ -11629,9 +11990,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Требуется корректная сессия, базирующаяся на UGC Client" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Невозможно установить директорию кэша" - #~ msgid "A valid Client interface instance is needed" #~ msgstr "Требуется действительная сессия клиента" @@ -11778,9 +12136,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "Downloading packages system mask" #~ msgstr "Загрузка маски системы пакетов" -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Загрузка предоставленных репозиторием ключевых слов пакета" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Загрузка файла пакетов с конфликтующими тэгами" @@ -11817,9 +12172,6 @@ msgstr "_Загрузить пакетный менеджер" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "id для атома продублирован, игнорируем" -#~ msgid "file not found" -#~ msgstr "файл не найден" - #~ msgid "invalid checksum" #~ msgstr "неправильная контрольная сумма" diff --git a/misc/po/sk.po b/misc/po/sk.po index dabb83e4a..ad6e2923a 100644 --- a/misc/po/sk.po +++ b/misc/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2010-10-31 11:33+0100\n" "Last-Translator: Bystrík Pešl \n" "Language-Team: \n" @@ -16,36 +16,36 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Synchronizácia aktuálnej databázy" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "prosím čakajte" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Odstraňovanie položky" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Pridávanie položky" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Exportovanie tabuľky databázy" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Export datábazy dokončený." -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -54,19 +54,19 @@ msgstr "Export datábazy dokončený." msgid "ATTENTION" msgstr "POZOR" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "Vyskytla sa Spm chyba" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "" @@ -246,16 +246,16 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "chyba" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "" @@ -306,7 +306,7 @@ msgstr "Nie je možne spustiť vyčistenie SPM, chyba" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -371,7 +371,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -405,7 +405,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "" @@ -451,7 +451,7 @@ msgid "Error calculating dependencies" msgstr "Výpočet závislostí" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "" @@ -515,463 +515,463 @@ msgstr "pripájanie k zrkadlu" msgid "setting directory to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "repozitár" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "balíčky" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "zrkadlo" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "balíček" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 msgid "mirror hasn't valid repository revision file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "dôvod" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "Vymazať" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -984,8 +984,8 @@ msgid "download path" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "" @@ -993,709 +993,720 @@ msgstr "" msgid "failed to download from mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 msgid "failed to unpack" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "repozitár" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "_Vynútiť aktualizáciu repozitárov" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "repozitár" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "repozitár je už zablokovaný" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "repozitár je povolený" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "Informácie o repozitári" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "Test závislostí" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Balíčky, ktoré je treba odstrániť" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "Repozitáre boli úspešne aktualizované" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Aktualizujú sa repozitáre" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "repozitár nie je nakonfigurovaný" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Revízia repozitáru" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Vy! Prečo chcete odstrániť hlavný repozitár?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "vstúpil do repozitára" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Poznámka" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "spätná závislosť" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "závislosť" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 msgid "loading data from source repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "GPG kĺúč bol dostupný v" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "GnuPG nie je dostupný" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "Nie sú dostupné kľúče pre" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "označenie balíčka" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "Neznáma chyba označenia balíčka" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "označené balíčky" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 msgid "Copying repository (if not exists)" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "Entropy správca repozitárov bol inicializovaný" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Odomknutý" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Zamknutý" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "nie je možné zamknúť zrkadlo" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "V repozitári" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Inštalácia GPG kľúča pre repozitár" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Entropy Správca repozitárov" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "úspešne spustené" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Neboli nájdené žiadne chýbajúce závislosti." -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Neboli nájdené žiadne chýbajúce závislosti." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Ste si istí?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1703,144 +1714,145 @@ msgstr "Ste si istí?" msgid "Yes" msgstr "Ano" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "Bude pridané" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "synchronizácia sád balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "Pridávanie balíčkov" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "synchronizácia sád balíčkov" @@ -1923,8 +1935,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Repozitár" @@ -2312,7 +2323,7 @@ msgstr "Viacnásobné prinášanie" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "balíčky" @@ -2370,16 +2381,8 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "Práve beží iné Entropy." @@ -2726,7 +2729,7 @@ msgstr "Repozitáre boli úspešne aktualizované" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "" @@ -3011,75 +3014,75 @@ msgstr "zlyhal prehľad overenia, skúste to neskôr" msgid "installing" msgstr "inštalovanie" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "Bežiaca závislosť" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "Funkčná závislosť" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "Zostavovacia závislosť" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "" @@ -3088,87 +3091,87 @@ msgstr "" msgid "Entropy needs your attention" msgstr "" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "Upraviť položku" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Vaša voľba (napíšte číslo a stlačte enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Nenapísali ste číslo." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Neplatná činnosť." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "" -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "" @@ -3334,16 +3337,18 @@ msgstr "" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Názov" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3471,7 +3476,6 @@ msgstr "" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "" @@ -3521,7 +3525,7 @@ msgid "Error while creating package for" msgstr "" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "" @@ -3647,7 +3651,7 @@ msgstr "repozitár nie je dostupný" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "" @@ -3659,7 +3663,7 @@ msgstr "" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "" @@ -3670,7 +3674,6 @@ msgstr "" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "" @@ -3699,8 +3702,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3847,8 +3850,9 @@ msgstr "" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "" @@ -3908,7 +3912,7 @@ msgstr "" msgid "Package Set Search" msgstr "" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "" @@ -3986,7 +3990,7 @@ msgstr "" msgid "Checksum" msgstr "" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Závislosti" @@ -4102,7 +4106,7 @@ msgid "repository already enabled" msgstr "repozitár je už povolený" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "repozitár nie je dostupný" @@ -4175,7 +4179,7 @@ msgstr "" msgid "never synced" msgstr "" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Stav" @@ -4225,24 +4229,25 @@ msgstr "" msgid "Unhandled exception" msgstr "" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Obsah" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "" @@ -4252,7 +4257,8 @@ msgstr "" msgid "Exit" msgstr "Koniec" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "" @@ -4262,7 +4268,7 @@ msgid "Notice board" msgstr "Nástenka" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Nie ste superpoužívateľ" @@ -4284,8 +4290,7 @@ msgid "Type a number." msgstr "Napíšte číslo." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Konfiguračný súbor" @@ -4405,7 +4410,7 @@ msgid "Unique files that would be automerged" msgstr "Unikátne súbory, ktoré by mali byť automaticky zlúčené" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "" @@ -4423,7 +4428,7 @@ msgstr "" msgid "Please logout first" msgstr "" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4431,7 +4436,7 @@ msgstr "" msgid "Username" msgstr "Meno používateľa" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4439,7 +4444,7 @@ msgstr "Meno používateľa" msgid "Password" msgstr "Heslo" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4451,7 +4456,7 @@ msgstr "Prosím prihláste sa na" msgid "Login aborted. Not logged in." msgstr "neprihlásený" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4666,7 +4671,7 @@ msgid "Installed packages database not available" msgstr "Databáza inštalovaných balíčkov nie je k dispozícii" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "je krtizované, prosím použite" @@ -4682,15 +4687,15 @@ msgstr "" msgid "No System Databases found" msgstr "" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" @@ -4969,28 +4974,23 @@ msgstr "Ok vzdávam to, ste beznádejní" msgid "Go to hell." msgstr "Choďte do pekla." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Základné možnosti" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "tento výstup" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "verzia pre tlač" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "vypnúť farebný výstup" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "vypnúť farebný výstup" @@ -4999,8 +4999,7 @@ msgstr "vypnúť farebný výstup" msgid "print a bash completion script to stdout" msgstr "" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "" @@ -5053,7 +5052,7 @@ msgstr "" msgid "show respositories status" msgstr "" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "" @@ -5092,8 +5091,7 @@ msgstr "" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "" @@ -5101,8 +5099,7 @@ msgstr "" msgid "just download packages" msgstr "" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "" @@ -5281,7 +5278,7 @@ msgstr "odkryť jeden alebo viac balíčkov" msgid "configure one or more installed packages" msgstr "" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "" @@ -5297,7 +5294,7 @@ msgstr "" msgid "look for missing libraries" msgstr "" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5325,7 +5322,7 @@ msgstr "" msgid "search from what package a file belongs" msgstr "" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "" @@ -5333,13 +5330,11 @@ msgstr "" msgid "search what packages depend on the provided atoms" msgstr "" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "" @@ -5380,8 +5375,7 @@ msgstr "hľadať medzi nainštalovanými balíčkami" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" @@ -5397,8 +5391,7 @@ msgstr "" msgid "show atoms needing the provided libraries" msgstr "" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "" @@ -5410,26 +5403,23 @@ msgstr "" msgid "show packages owning the provided tags" msgstr "" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "" @@ -5503,7 +5493,7 @@ msgid "" "generate installed packages database using files on the system [last hope]" msgstr "" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5520,487 +5510,159 @@ msgid "restore a previously backed up Entropy installed packages database" msgstr "" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Nainštalovaný repozitár balíčkov" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "skontrolovať chyby v nainštalovanom repozitári balíčkov" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "exportuj verejný kľúč daného repozitára" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" msgstr "" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." msgstr "" -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "" -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " "logged)" msgstr "" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" msgstr "" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Vaše celé meno:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Vaša E-mailova adresa:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." msgstr "" -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6009,7 +5671,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "" @@ -6149,10 +5810,7 @@ msgstr "" msgid "atom" msgstr "" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "" @@ -6178,6 +5836,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Toto sú balíčky, ktoré by boli skryté" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "" @@ -6406,7 +6065,7 @@ msgstr "Inštalácia dokončená" msgid "These are the packages that would be masked" msgstr "Toto sú balíčky, ktoré by boli skryté" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "Chcete pokračovať ?" @@ -6442,8 +6101,7 @@ msgstr "Odstraňovanie bolo zakázané" msgid "Would you like to calculate dependencies ?" msgstr "Chcete vypočítať závislosti?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Chcete ich odstrániť teraz?" @@ -6491,7 +6149,10 @@ msgstr "10 sekúnd" msgid "Libraries/Executables statistics" msgstr "" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "" @@ -6499,729 +6160,1012 @@ msgstr "" msgid "Would you like to install them ?" msgstr "" -#: ../../server/reagent.py:42 -msgid "show current repositories status" -msgstr "ukázať aktuálny stav repozitárov" - -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" msgstr "" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "Inštalácia GPG kľúča pre repozitár" +msgid "available tests" +msgstr "Dostupné aktualizácie" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" +#: ../../server/eit/commands/test.py:51 +#, fuzzy +msgid "dependencies test" +msgstr "Test závislostí" + +#: ../../server/eit/commands/test.py:55 +#, fuzzy +msgid "libraries test" +msgstr "Test knižníc" + +#: ../../server/eit/commands/test.py:57 +msgid "dump results to file" +msgstr "" + +#: ../../server/eit/commands/test.py:61 +#, fuzzy +msgid "library linking test (using repository metadata)" +msgstr "Indexovanie matadát repozitáru" + +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" +msgstr "" + +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 +#, fuzzy +msgid "package names" +msgstr "Atomy balíčku" + +#: ../../server/eit/commands/test.py:75 +#, fuzzy +msgid "verify local packages integrity" +msgstr "lokálne balíčky" + +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 +#, fuzzy +msgid "verify remote packages integrity" +msgstr "Odstrániteľný systémový balíček" + +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" +msgstr "" + +#: ../../server/eit/commands/query.py:55 +msgid "execute query" +msgstr "" + +#: ../../server/eit/commands/query.py:56 +#, fuzzy +msgid "available queries" +msgstr "Dostupné aktualizácie" + +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "synchronizácia sád balíčkov" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" +msgstr "" + +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 +#, fuzzy +msgid "query into given repository only" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Názov serveru" + +#: ../../server/eit/commands/query.py:72 +msgid "show libraries (.so) required by matched packages" +msgstr "" + +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "spätná závislosť" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" +msgstr "" + +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" msgstr "nezahrňuje spätné závislosti" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "" - -#: ../../server/reagent.py:89 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "mask given package in given repository" -msgstr "zapnúť daný repozitár" +msgid "search through package sets" +msgstr "synchronizácia sád balíčkov" -#: ../../server/reagent.py:90 +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" +msgstr "" + +#: ../../server/eit/commands/query.py:114 #, fuzzy -msgid "unmask given packages in given repository" -msgstr "Nainštalovaný repozitár balíčkov" +msgid "package set name" +msgstr "Názov systémového balíčka" -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" -msgstr "hľadať osirelé balíčky dostupné v MZB" - -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "hľadať nové balíčky dostupné v MZB" - -#: ../../server/reagent.py:120 -msgid "look for missing libraries (scan system)" -msgstr "" - -#: ../../server/reagent.py:122 -msgid "look for missing libraries (scan repository metadata)" -msgstr "" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "" - -#: ../../server/server_activator.py:458 +#: ../../server/eit/commands/query.py:118 #, fuzzy -msgid "Repositories lock complete" -msgstr "Obnovenie dokončené" +msgid "search packages through their description" +msgstr "Popis balíčka" -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:473 +#: ../../server/eit/commands/query.py:124 #, fuzzy -msgid "Repositories unlock complete" -msgstr "Obnovenie dokončené" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "Aktualizácia repozitárov" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Synchronizácia repozitárov" - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Nainštalovaný repozitár balíčkov" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" - -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -#, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Stav Vzdialeného Repozitára Entropy Databázy" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Server" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Revízia" - -#: ../../server/server_activator.py:615 -#, fuzzy -msgid "Local revision currently at" -msgstr "lokálna evízia" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" -msgstr "" - -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "funkcie pre manipuláciu s repozitárom" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "" - -#: ../../server/server_key.py:120 -#, fuzzy -msgid "Importing keypair for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "exportuj verejný kľúč daného repozitára" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "Ziadne systémové balíčky nie sú dostupné k zmazaniu" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "vstúpil do repozitára" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Vložte URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" +msgid "verbose output, show more information" msgstr "Informácie o repozitári" -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 +#: ../../server/eit/commands/query.py:130 #, fuzzy -msgid "Deleting keys for repository" -msgstr "Inštalácia GPG kľúča pre repozitár" +msgid "package description" +msgstr "Popis balíčka" -#: ../../server/server_key.py:303 +#: ../../server/eit/commands/query.py:174 #, fuzzy -msgid "No keys available for given repository" -msgstr "zapnúť daný repozitár" +msgid "Nothing found for" +msgstr "Nič nebolo nájdené" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:220 #, fuzzy -msgid "Are you really sure?" -msgstr "Ste si fakt istí?" +msgid "libraries found" +msgstr "Test knižníc" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" +msgstr "" + +#: ../../server/eit/commands/query.py:313 #, fuzzy -msgid "Keys metadata not available for" -msgstr "Nie sú dostupné kľúče pre" +msgid "sets found" +msgstr "používateľ nebol nájdený" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:347 #, fuzzy -msgid "GPG information for repository" -msgstr "Zoraď podľa repozitára" +msgid "packages found" +msgstr "Zlučovanie balíčka" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:356 #, fuzzy -msgid "Public key identifier" -msgstr "Duplicitný identifikátor repozitára" +msgid "miscellaneous package metadata queries" +msgstr "synchronizácia sád balíčkov" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Dátum vydania" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "" - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Zablokovaný" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -#, fuzzy -msgid "Invalid syntax." -msgstr "Neplatný vstup" - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -#, fuzzy -msgid "No valid repository specified." -msgstr "Žiaden identifikátor repozitáru" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -#, fuzzy -msgid "No packages selected." -msgstr "Nie je vybraný žiaden balíček" - -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "" - -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "Typ závislosti" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "Editor závislostí" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "Potvrdiť?" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "závislosti boli úspešne aktualizované" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Skrývanie balíčka" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Rozbaľovanie" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Mazanie vybraných balíčkov" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "Entropy správca repozitárov bol inicializovaný" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Toto sú balíčky, ktoré by boli nainštalované/aktualizované" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "upozornenie" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "" - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "lokálna evízia" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "uložené balíčky" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "odovzdať balíčky" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "označené balíčky" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "Bude pridané" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 msgid "switch injected" msgstr "" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" -"Toto sú novo dostupné balíčky, buď aktualizovateľné, alebo nenainštalované" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Nič nebolo nájdené" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "Stav Sabayon repozitárov" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Žiadne balíčky nie sú vo fronte" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "Mazanie vybraných balíčkov" + +#: ../../server/eit/commands/list.py:80 +#, fuzzy +msgid "not available" +msgstr "nie je dostupný" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "balíčky" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "Inštalácia balíčka" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "Entropy správca repozitárov bol inicializovaný" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Súčasný repozitár" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "V repozitári" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "Triedenie závislostí" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Názov systémového balíčka" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Nič nebolo nájdené" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "vstúpil do repozitára" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "repozitár" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Revízia repozitáru" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "Stav Sabayon repozitárov" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "Stav Sabayon repozitárov" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "tento výstup" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "Zmazaný repozitár" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Aktualizácia repozitárov" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Revízia repozitáru" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "_Aktualizovať Repozitáre" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/push.py:146 +#, fuzzy +msgid "Commit message" +msgstr "Chybové hlásenie" + +#: ../../server/eit/commands/push.py:148 +msgid "Enter the commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Stav Vzdialeného Repozitára Entropy Databázy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Server" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Vzdialene" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "Umiestnenie" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Vytvoriť prihlasovacie informácie" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Ukáže dostupné aplikácie" + +#: ../../server/eit/commands/notice.py:52 +msgid "add notice-board entry" +msgstr "" + +#: ../../server/eit/commands/notice.py:58 +msgid "remove notice-board entry" +msgstr "" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Nástenka" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Vložte URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "spravujte vaše repozitáre" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "repozitár" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Zoraď podľa repozitára" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Mazanie vybraných balíčkov" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" msgstr "" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Inštalácia balíčka" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "Nie je čo aktualizovať" + +#: ../../server/eit/commands/commit.py:163 msgid "These would be marked as injected" msgstr "" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 msgid "Transforming" msgstr "" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Obnovenie dokončené" +msgid "Action completed" +msgstr "Inštalácia dokončená" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Vyberte systémový balíček, ktorý chcete odobrať" +msgid "Select packages for removal" +msgstr "Balíčky k odstráneniu" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Zmazaný repozitár" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Vyberte systémový balíček, ktorý chcete pridať" +msgid "Select packages to add" +msgstr "Niektoré balíčky sú skryté" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Toto sú balíčky, ktoré by boli nainštalované/aktualizované" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "upozornenie" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "" + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Nainštalovaný repozitár balíčkov" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "nie je dostupný" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Zoraď podľa repozitára" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "spravujte vaše repozitáre" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/add.py:62 +msgid "commit to repository the provided packages" +msgstr "" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "ukázať aktuálny stav repozitárov" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Aktualizácie zrkadla" + +#: ../../server/eit/commands/lock.py:110 +msgid "server" +msgstr "" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "repozitár" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "V repozitári" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "spätná závislosť" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/vacuum.py:74 +msgid "Users with old repositories will need to update" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "súbory" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "označené balíčky" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "nezahrňuje spätné závislosti" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "Typ závislosti" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "Editor závislostí" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "Potvrdiť?" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "závislosti boli úspešne aktualizované" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "závislosť" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Zlučovanie balíčka" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "skryť jeden alebo viac balíčkov" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "Prerušiť činnosť" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "Ziadne systémové balíčky nie sú dostupné k zmazaniu" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "Ziadne systémové balíčky nie sú dostupné k zmazaniu" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "skontrolovať chyby v nainštalovanom repozitári balíčkov" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Duplicitný identifikátor repozitára" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "repozitár je povolený" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "vstúpil do repozitára" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Vložte URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Informácie o repozitári" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "zapnúť daný repozitár" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Ste si fakt istí?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "Nie sú dostupné kľúče pre" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "Zoraď podľa repozitára" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Duplicitný identifikátor repozitára" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Dátum vydania" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "vstúpil do repozitára" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Inštalácia balíčka" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "exportuj verejný kľúč daného repozitára" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "Ziadne systémové balíčky nie sú dostupné k zmazaniu" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Inštalácia GPG kľúča pre repozitár" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "spravujte vaše repozitáre" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Atomy balíčku" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Chránené súbory a priečinky" + +#: ../../server/eit/commands/inject.py:85 +msgid "unsupported extension" +msgstr "" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Inštalácia balíčka" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "Nainštalovaný repozitár balíčkov" + +#: ../../server/eit/commands/branch.py:54 +msgid "switch to given branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:59 +msgid "from branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Neplatná činnosť." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "spravujte vaše repozitáre" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Súčasný repozitár" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7278,115 +7222,121 @@ msgstr "Sú tu nekompletné balíčky častí, pokračujte na vlastné riziko" msgid "Application" msgstr "Aplikácie" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Úspešne stiahnuté z" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Hlas bol úspešne započítaný" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Chyba pri započítavaní hlasu" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Už zmazané" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Aplikácie" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "Aplikácie k zmazaniu" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "Balíčky k downgrade" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "Aplikácie k inštalácii" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "Aktualizácie aplikácií" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "Aplikácie k preinštalovaniu" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Navrhnutý" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Cieľ" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "Bezpečnostné id." -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "Meno aplikácie" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "Prosím čakajte, načítavanie..." -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "Odporúčania sa načítavajú" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Žiadne odporúčania" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Nie sú žiadne položky k zobrazeniu" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Názov súboru" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "vypnúť daný repozitár" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Aktívny" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Aktualizuj" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Revízia" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Identifikátor repozitáru" @@ -7803,6 +7753,10 @@ msgstr "Niektoré balíčky sú skryté" msgid "Masked package" msgstr "Skrytý balíček" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Prosím potvrď te hore zobrazené činnosti" @@ -9856,8 +9810,89 @@ msgid "_Load Package Manager" msgstr "Spustiť Správcu _Balíčkov" #, fuzzy -#~ msgid "reset error" -#~ msgstr "repozitár" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Nainštalovaný repozitár balíčkov" + +#~ msgid "export public key of given repository" +#~ msgstr "exportuj verejný kľúč daného repozitára" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "Inštalácia GPG kľúča pre repozitár" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "Nainštalovaný repozitár balíčkov" + +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "hľadať osirelé balíčky dostupné v MZB" + +#~ msgid "scan new packages available in SPM" +#~ msgstr "hľadať nové balíčky dostupné v MZB" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Obnovenie dokončené" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Obnovenie dokončené" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Synchronizácia repozitárov" + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "lokálna evízia" + +#~ msgid "repository handling functions" +#~ msgstr "funkcie pre manipuláciu s repozitárom" + +#~ msgid "Disabled" +#~ msgstr "Zablokovaný" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Neplatný vstup" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Žiaden identifikátor repozitáru" + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Nie je vybraný žiaden balíček" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Skrývanie balíčka" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Rozbaľovanie" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Toto sú balíčky, ktoré by boli nainštalované/aktualizované" + +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "" +#~ "Toto sú novo dostupné balíčky, buď aktualizovateľné, alebo nenainštalované" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Obnovenie dokončené" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Vyberte systémový balíček, ktorý chcete odobrať" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Vyberte systémový balíček, ktorý chcete pridať" #, fuzzy #~ msgid "Unknown error" @@ -9887,9 +9922,6 @@ msgstr "Spustiť Správcu _Balíčkov" #~ msgid "Packages removal complete" #~ msgstr "Odstránenie balíčkov hotovo" -#~ msgid "local packages" -#~ msgstr "lokálne balíčky" - #, fuzzy #~ msgid "Web Service error" #~ msgstr "Port" @@ -9929,9 +9961,6 @@ msgstr "Spustiť Správcu _Balíčkov" #~ msgid "Successfully disconnected from host" #~ msgstr "Odpojenie zo serveru bolo úspešné" -#~ msgid "user not found" -#~ msgstr "používateľ nebol nájdený" - #~ msgid "wrong password" #~ msgstr "nesprávne heslo" @@ -9951,10 +9980,6 @@ msgstr "Spustiť Správcu _Balíčkov" #~ msgid "cannot open a session" #~ msgstr "nie je možné otvoriť balíček, prepáčte" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "repozitár je povolený" - #~ msgid "YouTube(tm) Videos" #~ msgstr "YouTube(tm) videá" @@ -10158,9 +10183,6 @@ msgstr "Spustiť Správcu _Balíčkov" #~ msgid "Try clicking the %s button in the %s page" #~ msgstr "Skúste kliknúť na tlačidlo %s v karte %s" -#~ msgid "Packages to remove" -#~ msgstr "Balíčky k odstráneniu" - #~ msgid "Packages to install" #~ msgstr "Balíčky k inštalácii" diff --git a/misc/po/sv.po b/misc/po/sv.po index 69180eb35..7684d7317 100644 --- a/misc/po/sv.po +++ b/misc/po/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: entropy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2010-08-09 22:18+0000\n" "Last-Translator: Patrik Karlsson \n" "Language-Team: Swedish \n" @@ -19,36 +19,36 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "vänligen vänta" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Tar bort post" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "" -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -57,19 +57,19 @@ msgstr "" msgid "ATTENTION" msgstr "ATTENTION" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 msgid "Spm error occured" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 msgid "Spm Unique Identifier not found for" msgstr "" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 msgid "updating repository metadata layout, please wait!" msgstr "uppdaterar layout för förrådets metadata, vänligen vänta!" -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "" @@ -247,16 +247,16 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "fel" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "" @@ -305,7 +305,7 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -370,7 +370,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -404,7 +404,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "finns inte" @@ -448,7 +448,7 @@ msgid "Error calculating dependencies" msgstr "Beräknar beroenden" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "" @@ -511,463 +511,463 @@ msgstr "" msgid "setting directory to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "förråd" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "paket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "låser upp" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "spegel" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "för hämtning" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "hämtar paket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "paket" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "kontrollsumman stämmer ej. Hämtar igen..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "Hämtar förrådsmetafil" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "hämta" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "ta bort" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Beräknar köer" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "tar bort paket + hash" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "orsak" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "på" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Nej" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "du måste paketera dem igen" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "tar bort paket lokalt" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 msgid "removed" msgstr "borttagna" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 msgid "removing notice board from" msgstr "tar bort anslagstavla från" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 msgid "notice board removal failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 msgid "notice board removal success" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -981,8 +981,8 @@ msgid "download path" msgstr "hämtningssökväg" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "fel" @@ -990,708 +990,719 @@ msgstr "fel" msgid "failed to download from mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 msgid "failed to unpack" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 msgid "creating compressed repository dump + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "förråd" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 msgid "compressing repository + checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "_Tvinga förrådsuppdatering" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "förråd" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 msgid "preparing uncompressed repository for the upload" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "Avaktiverade EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 msgid "preparing to upload repository to mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 msgid "upload failed, locking and continuing" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "förråd redan avaktiverat" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "förråd avaktiverat" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "förråd avaktiverat" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "tar bort paket" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "Förrådsalternativ" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Dessa paket kommer att installeras/uppdateras" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "Förråden uppdaterades framgångsrikt" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 msgid "mirrors have not been unlocked. Sync them." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 msgid "cannot store updates RSS cache" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "INJECT" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "Förrådet uppdateras" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Förrådsrevision" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "förråd" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 msgid "syncing package sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Indexerar förrådets metadata" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 msgid "do you really want to initialize this repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "fel md5" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "fel vid hämtning av paket från speglar" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "arbetar på gren" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Sortera efter förråd" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 msgid "reverse dependency" msgstr "omvända beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "flyttar fil" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "returnera par från alla förråd" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 msgid "GPG key was available in" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 msgid "injecting data to destination repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "tar bort post från källdatabasen" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "tar bort paket" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Spegel" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Statistik" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "lokal" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 msgid "GPG signing packages for repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 msgid "All the missing packages in repository will be downloaded." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 msgid "GnuPG not available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 msgid "Keys not available for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 msgid "signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 msgid "Unknown error signing package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 msgid "signed packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "skriv ut förrådsinformation (w/--quiet)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 msgid "Entropy repository is already locked by you :-)" msgstr "" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 msgid "Locking and Syncing Entropy repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Förrådet uppdateras" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Indexerar förrådets metadata" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 msgid "Initializing an empty repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "från förråd" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Beräknar beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Beräknar beroenden" -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Är du säker?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1699,143 +1710,144 @@ msgstr "Är du säker?" msgid "Yes" msgstr "Ja" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 msgid "using metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 msgid "metadata QA check complete" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Undantag fångat, stänger uppgifter" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "typ" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 msgid "GPG key expired" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 msgid "please frigging fix" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 msgid "added" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "ersatte" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 msgid "No dependency rewrite made for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "uppdaterar paket" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "tar bort paket" @@ -1918,8 +1930,7 @@ msgstr "Uppdaterar systemdatabas" #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "" @@ -2304,7 +2315,7 @@ msgstr "Multihämtning" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "paket" @@ -2362,16 +2373,8 @@ msgstr "" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 msgid "Another Entropy is currently running." msgstr "" @@ -2713,7 +2716,7 @@ msgstr "Förråden uppdaterades framgångsrikt" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "" @@ -2996,75 +2999,75 @@ msgstr "" msgid "installing" msgstr "installerar" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 msgid "Runtime dependency" msgstr "" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 msgid "Post dependency" msgstr "" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 msgid "Build dependency" msgstr "" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "" @@ -3073,87 +3076,87 @@ msgstr "" msgid "Entropy needs your attention" msgstr "Entropy behöver din uppmärksamhet" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 msgid "Edit item" msgstr "" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Ditt val (ange ett tal och tryck enter):" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "" -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "" -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 msgid "String to add (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "" -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 msgid "Element number to edit (-1 to go back):" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "gamla" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "nytt värde:" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "" -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 msgid "Element number to remove (-1 to go back):" msgstr "" @@ -3315,16 +3318,18 @@ msgstr "" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Titel" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3451,7 +3456,6 @@ msgstr "Du är inte" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "" @@ -3501,7 +3505,7 @@ msgid "Error while creating package for" msgstr "" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "" @@ -3627,7 +3631,7 @@ msgstr "Förrådet uppdateras" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "" @@ -3639,7 +3643,7 @@ msgstr "" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "" @@ -3650,7 +3654,6 @@ msgstr "" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "" @@ -3679,8 +3682,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3827,8 +3830,9 @@ msgstr "" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "" @@ -3888,7 +3892,7 @@ msgstr "" msgid "Package Set Search" msgstr "" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "" @@ -3965,7 +3969,7 @@ msgstr "" msgid "Checksum" msgstr "" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Beroenden" @@ -4072,7 +4076,7 @@ msgid "repository already enabled" msgstr "" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 msgid "repository not available" msgstr "" @@ -4144,7 +4148,7 @@ msgstr "aktiv" msgid "never synced" msgstr "" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Status" @@ -4194,24 +4198,25 @@ msgstr "" msgid "Unhandled exception" msgstr "" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Innehåll" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "" @@ -4221,7 +4226,8 @@ msgstr "" msgid "Exit" msgstr "Avsluta" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "" @@ -4231,7 +4237,7 @@ msgid "Notice board" msgstr "Anslagstavla" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Du är inte root" @@ -4253,8 +4259,7 @@ msgid "Type a number." msgstr "" #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Konfigurationsfil" @@ -4373,7 +4378,7 @@ msgid "Unique files that would be automerged" msgstr "" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "" @@ -4391,7 +4396,7 @@ msgstr "" msgid "Please logout first" msgstr "" -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4399,7 +4404,7 @@ msgstr "" msgid "Username" msgstr "Användarnamn" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4407,7 +4412,7 @@ msgstr "Användarnamn" msgid "Password" msgstr "Lösenord" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4418,7 +4423,7 @@ msgstr "" msgid "Login aborted. Not logged in." msgstr "" -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4630,7 +4635,7 @@ msgid "Installed packages database not available" msgstr "" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4646,15 +4651,15 @@ msgstr "" msgid "No System Databases found" msgstr "" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "" @@ -4932,28 +4937,23 @@ msgstr "Ok, jag ger upp, du är hopplös" msgid "Go to hell." msgstr "Dra åt helvete." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Grundläggande alternativ" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "den här utskriften" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "skriv ut version" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "stäng av färgutskrift" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "stäng av färgutskrift" @@ -4962,8 +4962,7 @@ msgstr "stäng av färgutskrift" msgid "print a bash completion script to stdout" msgstr "skriv ut ett bash completion-skript till stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Programalternativ" @@ -5015,7 +5014,7 @@ msgstr "" msgid "show respositories status" msgstr "visa förrådsstatus" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "sök paket i förråd" @@ -5054,8 +5053,7 @@ msgstr "uppdatera systemet med de senast tillgängliga paketen" #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "fråga före ändring genomförs" @@ -5063,8 +5061,7 @@ msgstr "fråga före ändring genomförs" msgid "just download packages" msgstr "enbart hämtning av paket" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "enbart visning av vad som skall utföras" @@ -5243,7 +5240,7 @@ msgstr "" msgid "configure one or more installed packages" msgstr "" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "" @@ -5259,7 +5256,7 @@ msgstr "" msgid "look for missing libraries" msgstr "" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "" @@ -5287,7 +5284,7 @@ msgstr "" msgid "search from what package a file belongs" msgstr "" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "" @@ -5295,13 +5292,11 @@ msgstr "" msgid "search what packages depend on the provided atoms" msgstr "" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "sök paket på beskrivning" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "" @@ -5342,8 +5337,7 @@ msgstr "" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "" @@ -5359,8 +5353,7 @@ msgstr "" msgid "show atoms needing the provided libraries" msgstr "" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "" @@ -5372,26 +5365,23 @@ msgstr "" msgid "show packages owning the provided tags" msgstr "" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 msgid "show reverse depdendencies tree for provided installed atoms" msgstr "visa omvänt beroendeträd för givna installerade atomer" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "visa mer detaljerat" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "skriv ut resultatet på ett skriptbart sätt" @@ -5465,7 +5455,7 @@ msgid "" "generate installed packages database using files on the system [last hope]" msgstr "" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5482,432 +5472,104 @@ msgid "restore a previously backed up Entropy installed packages database" msgstr "" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Beräknar tillgängliga paket för" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "" - -#: ../../client/equo.py:298 -msgid "(re)initialize the current repository database" -msgstr "(om)initiera aktuell förrådsdatabas" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "" - -#: ../../client/equo.py:300 -msgid "(re)create the database for the specified repository" -msgstr "(åter)skapa databas för valt förråd" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "säkerhetskopiera aktuell förrådsdatabas" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "sök paket i förråd" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -msgid "handle packages dependencies" -msgstr "" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -msgid "create keypair for repositories and sign packages" -msgstr "" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -msgid "show currently configured keys information for given repositories" -msgstr "" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -msgid "import keypair, bind to given repository" -msgstr "" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -msgid "export public key of given repository" -msgstr "" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -msgid "export private key of given repository" -msgstr "" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "" - -#: ../../client/equo.py:349 -msgid "show installed packages owning the specified revisions" -msgstr "" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" msgstr "" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "hantera Entropys cache" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "rensa Entropys cache" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "ta bort hämtade paket och rensa temp-kataloger" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "visa systeminformation" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " "Well, you know, shit happens." msgstr "" -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "-- ÄVEN OM JAG INTE VILL ATT DU SKICKAR SAMMA RAPPORT FLERA GÅNGER --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " "lxnay@sabayon.org." @@ -5915,56 +5577,56 @@ msgstr "" "Ja ja, jag kan inte ens skriva till /tmp. Kopiera gärna felet och skicka det " "till lxnay@sabayon.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "" -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 msgid "" "Erm... Can I send the error, along with some information\n" "about your hardware to my creators so they can fix me? (Your IP will be " "logged)" msgstr "" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 msgid "" "If you want to be contacted back (and actively supported), also answer the " "questions below:" msgstr "" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 msgid "" "Thank you very much. The error has been reported and hopefully, the problem " "will be solved as soon as possible." msgstr "" -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " "lxnay@sabayon.org." msgstr "" -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -5973,7 +5635,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "" @@ -6113,10 +5774,7 @@ msgstr "" msgid "atom" msgstr "atom" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "i" @@ -6142,6 +5800,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Dessa paket kommer att installeras/uppdateras" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "" @@ -6369,7 +6028,7 @@ msgstr "" msgid "These are the packages that would be masked" msgstr "" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 msgid "Would you like to continue?" msgstr "" @@ -6405,8 +6064,7 @@ msgstr "" msgid "Would you like to calculate dependencies ?" msgstr "" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "" @@ -6454,7 +6112,10 @@ msgstr "10 sekunder" msgid "Libraries/Executables statistics" msgstr "" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "" @@ -6462,708 +6123,990 @@ msgstr "" msgid "Would you like to install them ?" msgstr "" -#: ../../server/reagent.py:42 -msgid "show current repositories status" +#: ../../server/eit/main.py:82 +msgid "superuser access required" msgstr "" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" +#: ../../server/eit/commands/test.py:47 +msgid "run given test" msgstr "" -#: ../../server/reagent.py:55 -msgid "match package dependency inside the default repository database" -msgstr "" - -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(om)initiera aktuell förrådsdatabas" +msgid "available tests" +msgstr "Tillgängliga uppdateringar" -#: ../../server/reagent.py:77 -msgid "do not include reverse dependencies" -msgstr "" - -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "" - -#: ../../server/reagent.py:81 -msgid "verify remote integrity of the provided atoms" -msgstr "" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "" - -#: ../../server/reagent.py:89 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "mask given package in given repository" -msgstr "para ihop paket i förråden" +msgid "dependencies test" +msgstr "Beroenden" -#: ../../server/reagent.py:90 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "unmask given packages in given repository" -msgstr "sök paket i förråd" +msgid "libraries test" +msgstr "bibliotek" -#: ../../server/reagent.py:116 -msgid "scan orphaned packages in SPM" +#: ../../server/eit/commands/test.py:57 +msgid "dump results to file" msgstr "" -#: ../../server/reagent.py:117 -msgid "scan new packages available in SPM" -msgstr "" - -#: ../../server/reagent.py:120 -msgid "look for missing libraries (scan system)" -msgstr "" - -#: ../../server/reagent.py:122 -msgid "look for missing libraries (scan repository metadata)" -msgstr "" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "ta bort hämtade paket och rensa temp-kataloger)" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Avbryter!" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "" - -#: ../../server/server_activator.py:174 -msgid "Should I continue with the tidy procedure ?" -msgstr "" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Är du säker på att du vill ta bort detta?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "" - -#: ../../server/server_activator.py:458 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "Repositories lock complete" -msgstr "Förrådsalternativ" +msgid "library linking test (using repository metadata)" +msgstr "Indexerar förrådets metadata" -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:473 +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" +msgstr "" + +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Repositories unlock complete" -msgstr "Förrådsalternativ" +msgid "package names" +msgstr "paket" -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Syncing repository" -msgstr "Uppdaterar förråd..." +msgid "verify local packages integrity" +msgstr "inaktivera kontroll av paketintegritet" -#: ../../server/server_activator.py:566 +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" +msgstr "" + +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Förrådssynkronisering" - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Beräknar tillgängliga paket för" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." -msgstr "" - -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." -msgstr "" - -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 -#, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "från förråd" - -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Värd" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Utgåva" - -#: ../../server/server_activator.py:615 -msgid "Local revision currently at" -msgstr "" - -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" -msgstr "" - -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "" - -#: ../../server/activator.py:61 -msgid "repository handling functions" -msgstr "" - -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" -msgstr "" - -#: ../../server/server_key.py:120 -msgid "Importing keypair for repository" -msgstr "" - -#: ../../server/server_key.py:125 -msgid "Another keypair already exists for repository" -msgstr "" - -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:143 ../../server/server_key.py:270 -msgid "Now you should sign all the packages in it" -msgstr "Nu skall du signera alla paket i det" - -#: ../../server/server_key.py:155 -msgid "Exporting private key for repository" -msgstr "" - -#: ../../server/server_key.py:159 -msgid "Exporting public key for repository" -msgstr "" - -#: ../../server/server_key.py:164 -msgid "No keypair available for repository" -msgstr "" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -msgid "Unable to export GPG key for repository" -msgstr "" - -#: ../../server/server_key.py:201 -msgid "Exported GPG key for repository" -msgstr "" - -#: ../../server/server_key.py:213 -msgid "Creating keys for repository" -msgstr "" - -#: ../../server/server_key.py:218 -msgid "Another key already exists for repository" -msgstr "" - -#: ../../server/server_key.py:241 -msgid "Insert e-mail" -msgstr "" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -msgid "Repository GPG keypair creation" -msgstr "" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -msgid "Deleting keys for repository" -msgstr "" - -#: ../../server/server_key.py:303 -msgid "No keys available for given repository" -msgstr "" - -#: ../../server/server_key.py:310 -msgid "Are you really sure?" -msgstr "Är du verkligen säker?" - -#: ../../server/server_key.py:318 ../../server/server_key.py:345 -msgid "Keys metadata not available for" -msgstr "" - -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:353 -msgid "GPG information for repository" -msgstr "" - -#: ../../server/server_key.py:375 -msgid "Public key identifier" -msgstr "" - -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" -msgstr "" - -#: ../../server/server_key.py:377 -msgid "Key size" -msgstr "" - -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Skapat" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "" - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Avaktiverar" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Avaktiverad" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "redan avaktiverad" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 -msgid "Invalid syntax." -msgstr "" - -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 -#, fuzzy -msgid "No valid repository specified." -msgstr "Hämtar förrådsmetafil" - -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 -#, fuzzy -msgid "No packages selected." +msgid "verify remote packages integrity" msgstr "Inga paket i kön" -#: ../../server/server_reagent.py:235 -msgid "package dependencies" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_reagent.py:244 -msgid "No dependencies" +#: ../../server/eit/commands/query.py:55 +msgid "execute query" msgstr "" -#: ../../server/server_reagent.py:274 -msgid "Dependency type" -msgstr "" - -#: ../../server/server_reagent.py:279 -msgid "Select a dependency type for" -msgstr "" - -#: ../../server/server_reagent.py:303 -msgid "Dependencies editor" -msgstr "" - -#: ../../server/server_reagent.py:312 -msgid "Confirm ?" -msgstr "" - -#: ../../server/server_reagent.py:335 -msgid "dependencies updated successfully" -msgstr "beroenden uppdaterade framgångsrikt" - -#: ../../server/server_reagent.py:355 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Masking" -msgstr "Packar upp" +msgid "available queries" +msgstr "Tillgängliga uppdateringar" -#: ../../server/server_reagent.py:382 +#: ../../server/eit/commands/query.py:59 #, fuzzy -msgid "Unmasking" -msgstr "Packar upp" +msgid "search package tags" +msgstr "sök paket i förråd" -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Tar bort valda paket" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "" - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "" - -#: ../../server/server_reagent.py:738 -msgid "Entropy repository has been initialized" -msgstr "" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "" - -#: ../../server/server_reagent.py:921 -msgid "Invalid atom" -msgstr "" - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "" - -#: ../../server/server_reagent.py:938 -msgid "Would you like to transform them now ?" -msgstr "" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "" - -#: ../../server/server_reagent.py:1000 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Dessa paket kommer att installeras/uppdateras" +msgid "query into given repository only" +msgstr "aktivera givet förråd" -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -msgid "warning" -msgstr "varning" +#: ../../server/eit/commands/query.py:68 +#, fuzzy +msgid "tag name" +msgstr "Värdnamn" -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" +#: ../../server/eit/commands/query.py:72 +msgid "show libraries (.so) required by matched packages" msgstr "" -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "i" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "visa omvänt beroendeträd för givna installerade atomer" -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" +#: ../../server/eit/commands/query.py:93 +#, fuzzy +msgid "include build dependencies" +msgstr "Beräknar beroenden" + +#: ../../server/eit/commands/query.py:102 +#, fuzzy +msgid "search through package sets" +msgstr "uppdaterar paket" + +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "paket" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "sök paket på beskrivning" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "visa systeminformation" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "sök paket på beskrivning" + +#: ../../server/eit/commands/query.py:174 +msgid "Nothing found for" msgstr "" -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "bibliotek" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/query.py:313 +msgid "sets found" +msgstr "" + +#: ../../server/eit/commands/query.py:347 +#, fuzzy +msgid "packages found" +msgstr "tar bort paket" + +#: ../../server/eit/commands/query.py:356 +#, fuzzy +msgid "miscellaneous package metadata queries" +msgstr "tar bort paket + hash" + +#: ../../server/eit/commands/status.py:84 msgid "local revision" msgstr "" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 msgid "stored packages" msgstr "lagrade paket" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 msgid "upload packages" msgstr "" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "lagrade paket" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 msgid "add" msgstr "" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 msgid "switch injected" msgstr "" -#: ../../server/server_reagent.py:1258 -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "visa förrådsstatus" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "Inga paket i kön" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "Tar bort valda paket" + +#: ../../server/eit/commands/list.py:80 +#, fuzzy +msgid "not available" +msgstr "Tillgängliga" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "paket" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "sök paket i förråd" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "sök paket i förråd" + +#: ../../server/eit/commands/init.py:59 +msgid "Entropy repository has been initialized" +msgstr "" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "ta bort förråd" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "Indexerar förrådets metadata" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "Beroenden" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "paket" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "ta bort förråd" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "förråd" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Förrådsrevision" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "visa förrådsstatus" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "visa förrådsstatus" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "den här utskriften" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "ta bort förråd" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Uppdaterar förråd..." + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Förrådsrevision" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "_Uppdatera förråd" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "para ihop i inom installerade paket" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:148 +msgid "Enter the commit message" +msgstr "" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "från förråd" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Värd" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Ta bort" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "lokal" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Avbryter!" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +#, fuzzy +msgid "push (or pull) repository packages and metadata" +msgstr "förrådet ändrades. Uppdaterar metadata" + +#: ../../server/eit/commands/notice.py:48 +msgid "execute given action" +msgstr "" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "Visa tillgängliga program" + +#: ../../server/eit/commands/notice.py:52 +msgid "add notice-board entry" +msgstr "" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "tar bort anslagstavla från" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Anslagstavla" + +#: ../../server/eit/commands/notice.py:164 +msgid "no URL" +msgstr "" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +msgid "URL" +msgstr "" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Är du säker på att du vill ta bort detta?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "hantera dina förråd" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "förråd" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "från förråd" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "aktivera givet förråd" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "para ihop i inom installerade paket" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Tar bort valda paket" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" msgstr "" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Installerar paket" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +msgid "Zarro thinggz to do" +msgstr "" + +#: ../../server/eit/commands/commit.py:163 msgid "These would be marked as injected" msgstr "" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 msgid "Transforming" msgstr "" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" +msgid "Action completed" msgstr "Säkerhetskopiering slutförd" -#: ../../server/eit/commands/commit.py:222 -#, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Är du säker på att du vill ta bort detta?" +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:209 +#, fuzzy +msgid "Select packages for removal" +msgstr "Hämta paketinformation" + +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "ta bort förråd" -#: ../../server/eit/commands/commit.py:260 -msgid "What packages do you want to add ?" +#: ../../server/eit/commands/commit.py:248 +#, fuzzy +msgid "Select packages to add" +msgstr "Det finns inte några paket att visa" + +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" msgstr "" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Dessa paket kommer att installeras/uppdateras" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +msgid "warning" +msgstr "varning" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "i" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "" + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "para ihop i inom installerade paket" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "Förrådet uppdateras" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "från förråd" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "para ihop paket i förråden" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "aktivera givet förråd" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "förrådsfel vid paketborttagning" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "visa förrådsstatus" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Speglar" + +#: ../../server/eit/commands/lock.py:110 +msgid "server" +msgstr "" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "från förråd" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "från förråd" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "visa omvänt beroendeträd för givna installerade atomer" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Beräknar tillgängliga paket för" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Beräknar tillgängliga paket för" + +#: ../../server/eit/commands/vacuum.py:74 +msgid "Users with old repositories will need to update" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Beräknar tillgängliga paket för" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "filer" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "lagrade paket" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "aktivera givet förråd" + +#: ../../server/eit/commands/remove.py:51 +msgid "do not include reverse dependencies" +msgstr "" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "Beräknar tillgängliga paket för" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "" + +#: ../../server/eit/commands/deps.py:154 +msgid "Dependency type" +msgstr "" + +#: ../../server/eit/commands/deps.py:160 +msgid "Select a dependency type for" +msgstr "" + +#: ../../server/eit/commands/deps.py:185 +msgid "Dependencies editor" +msgstr "" + +#: ../../server/eit/commands/deps.py:195 +msgid "Confirm ?" +msgstr "" + +#: ../../server/eit/commands/deps.py:219 +msgid "dependencies updated successfully" +msgstr "beroenden uppdaterade framgångsrikt" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "para ihop i inom installerade paket" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "omvända beroenden" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "tar bort paket" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "" + +#: ../../server/eit/commands/graph.py:92 +msgid "show dependency graph for packages" +msgstr "" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "Avbryt åtgärd" + +#: ../../server/eit/commands/key.py:54 +msgid "create keypair for repository and packages" +msgstr "" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "returnera par från alla förråd" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "returnera par från alla förråd" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "sök paket i förråd" + +#: ../../server/eit/commands/key.py:78 +msgid "import keypair, bind to given repository" +msgstr "" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +msgid "public key path" +msgstr "" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "ta bort förråd" + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +msgid "Creating keys for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:150 +msgid "Another key already exists for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:174 +msgid "Insert e-mail" +msgstr "" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +msgid "Repository GPG keypair creation" +msgstr "" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +msgid "Now you should sign all the packages in it" +msgstr "Nu skall du signera alla paket i det" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +msgid "Deleting keys for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:246 +msgid "No keys available for given repository" +msgstr "" + +#: ../../server/eit/commands/key.py:253 +msgid "Are you really sure?" +msgstr "Är du verkligen säker?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +msgid "Keys metadata not available for" +msgstr "" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +msgid "GPG information for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:325 +msgid "Public key identifier" +msgstr "" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Skapat" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +msgid "Importing keypair" +msgstr "" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "förråd redan avaktiverat" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Nu skall du signera alla paket i det" + +#: ../../server/eit/commands/key.py:436 +msgid "Exporting private key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:440 +msgid "Exporting public key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:445 +msgid "No keypair available for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +msgid "Unable to export GPG key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:483 +msgid "Exported GPG key for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "hantera dina förråd" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "paket" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Skyddade filer och kataloger" + +#: ../../server/eit/commands/inject.py:85 +msgid "unsupported extension" +msgstr "" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Installerar paket" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "sök paket i förråd" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "arbetar på gren" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "arbetar på gren" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Installerar paket" + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "hantera dina förråd" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Sortera efter förråd" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7220,115 +7163,121 @@ msgstr "" msgid "Application" msgstr "Program" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Framgångsrik hämtning från" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 msgid "Unsupported Service" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "redan aktuell" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Program" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 msgid "Applications to remove" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 msgid "Applications to downgrade" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 msgid "Applications to install" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 msgid "Applications to update" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 msgid "Applications to reinstall" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Föreslagna" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Mål" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Rev." -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 msgid "Security id." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 msgid "Application name" msgstr "" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 msgid "Please wait, loading..." msgstr "" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 msgid "Advisories are being loaded" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Det finns inte några poster att visa" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Filnamn" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "avaktivera givet förråd" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Aktiv" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Uppdatera" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Utgåva" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Förrådsnamn" @@ -7732,6 +7681,10 @@ msgstr "" msgid "Masked package" msgstr "" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Vänligen bekräfta åtgärderna ovan" @@ -9755,8 +9708,82 @@ msgid "_Load Package Manager" msgstr "_Starta pakethanteraren" #, fuzzy -#~ msgid "reset error" -#~ msgstr "förråd" +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Beräknar tillgängliga paket för" + +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(om)initiera aktuell förrådsdatabas" + +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(åter)skapa databas för valt förråd" + +#~ msgid "backup current repository database" +#~ msgstr "säkerhetskopiera aktuell förrådsdatabas" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(om)initiera aktuell förrådsdatabas" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "para ihop paket i förråden" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "sök paket i förråd" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "ta bort hämtade paket och rensa temp-kataloger)" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Förrådsalternativ" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Förrådsalternativ" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Förrådssynkronisering" + +#~ msgid "Disabling" +#~ msgstr "Avaktiverar" + +#~ msgid "Disabled" +#~ msgstr "Avaktiverad" + +#~ msgid "already disabled" +#~ msgstr "redan avaktiverad" + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Hämtar förrådsmetafil" + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Inga paket i kön" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Packar upp" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Packar upp" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Dessa paket kommer att installeras/uppdateras" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Säkerhetskopiering slutförd" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Är du säker på att du vill ta bort detta?" #, fuzzy #~ msgid "Unknown error" @@ -9817,10 +9844,6 @@ msgstr "_Starta pakethanteraren" #~ msgid "Ok" #~ msgstr "Ok" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "ta bort förråd" - #~ msgid "YouTube(tm) Videos" #~ msgstr "YouTube(tm)-videos" @@ -9854,10 +9877,6 @@ msgstr "_Starta pakethanteraren" #~ msgid "Calculating updates..." #~ msgstr "Beräknar uppdateringar..." -#, fuzzy -#~ msgid "repository already exists" -#~ msgstr "förråd redan avaktiverat" - #~ msgid "Categories" #~ msgstr "Kategorier" @@ -9880,11 +9899,5 @@ msgstr "_Starta pakethanteraren" #~ msgid "Downloaded database status" #~ msgstr "Hämtade databasstatus" -#~ msgid "disable package integrity check" -#~ msgstr "inaktivera kontroll av paketintegritet" - #~ msgid "Aborting queue tasks." #~ msgstr "Avbryter köade uppgifter" - -#~ msgid "repository changed. Updating metadata" -#~ msgstr "förrådet ändrades. Uppdaterar metadata" diff --git a/misc/po/uk.po b/misc/po/uk.po index 78362cf21..da3e272e3 100644 --- a/misc/po/uk.po +++ b/misc/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: entropy_vitovtREV01\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-09 17:09+0200\n" +"POT-Creation-Date: 2011-10-17 11:24+0200\n" "PO-Revision-Date: 2010-01-15 21:04+0200\n" "Last-Translator: Grusha Linux Team\n" "Language-Team: \n" @@ -24,36 +24,36 @@ msgstr "" "X-Poedit-Country: Ukraine\n" "X-Generator: KBabel 1.11.4\n" -#: ../../libraries/entropy/db/__init__.py:5024 +#: ../../libraries/entropy/db/__init__.py:5025 msgid "Syncing current database" msgstr "Синхронізація поточної бази даних" -#: ../../libraries/entropy/db/__init__.py:5025 +#: ../../libraries/entropy/db/__init__.py:5026 #: ../../libraries/entropy/client/interfaces/db.py:287 msgid "please wait" msgstr "зачекайте, будь-ласка" -#: ../../libraries/entropy/db/__init__.py:5040 +#: ../../libraries/entropy/db/__init__.py:5041 msgid "Removing entry" msgstr "Видалення запису" -#: ../../libraries/entropy/db/__init__.py:5059 +#: ../../libraries/entropy/db/__init__.py:5060 msgid "Adding entry" msgstr "Додавання запису" -#: ../../libraries/entropy/db/__init__.py:5136 +#: ../../libraries/entropy/db/__init__.py:5137 msgid "Exporting database table" msgstr "Експорт таблиці бази даних" -#: ../../libraries/entropy/db/__init__.py:5176 +#: ../../libraries/entropy/db/__init__.py:5177 msgid "Database Export complete." msgstr "Експорт бази даних завершено. " -#: ../../libraries/entropy/db/__init__.py:5819 -#: ../../libraries/entropy/db/__init__.py:5832 -#: ../../libraries/entropy/db/__init__.py:5986 -#: ../../libraries/entropy/db/__init__.py:6093 -#: ../../libraries/entropy/db/__init__.py:6106 +#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5987 +#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6107 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2406 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:2545 #: ../../libraries/entropy/client/interfaces/client.py:856 @@ -62,22 +62,22 @@ msgstr "Експорт бази даних завершено. " msgid "ATTENTION" msgstr "УВАГА" -#: ../../libraries/entropy/db/__init__.py:5820 +#: ../../libraries/entropy/db/__init__.py:5821 #, fuzzy msgid "Spm error occured" msgstr "дзеркало розблоковано" -#: ../../libraries/entropy/db/__init__.py:5833 +#: ../../libraries/entropy/db/__init__.py:5834 #, fuzzy msgid "Spm Unique Identifier not found for" msgstr "Шлях до лічильника Spm не знайдено" -#: ../../libraries/entropy/db/__init__.py:5988 +#: ../../libraries/entropy/db/__init__.py:5989 #, fuzzy msgid "updating repository metadata layout, please wait!" msgstr "Генерація мета-інформації. Будь-ласка, зачекайте." -#: ../../libraries/entropy/db/__init__.py:6094 +#: ../../libraries/entropy/db/__init__.py:6095 msgid "generating provided_libs metadata, please wait!" msgstr "Генерація мета-інформації. Будь-ласка, зачекайте." @@ -259,16 +259,16 @@ msgstr "Збірка лічильників портеджа" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:874 #: ../../libraries/entropy/server/transceivers.py:302 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1874 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1896 -#: ../../libraries/entropy/server/interfaces/db.py:1060 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1890 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1912 +#: ../../libraries/entropy/server/interfaces/db.py:1064 msgid "error" msgstr "помилка" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:876 #: ../../libraries/entropy/client/interfaces/package.py:380 #: ../../libraries/entropy/client/interfaces/package.py:1032 -#: ../../server/server_reagent.py:98 ../../server/server_reagent.py:115 +#: ../../server/eit/commands/deps.py:122 msgid "not found" msgstr "не знайдено" @@ -319,7 +319,7 @@ msgstr "Неможливо виконати очищення SPM, помилка #: ../../libraries/entropy/client/interfaces/package.py:3435 #: ../../libraries/entropy/client/interfaces/trigger.py:72 #: ../../libraries/entropy/security.py:651 ../../client/text_rescue.py:737 -#: ../../server/server_reagent.py:793 ../../sulfur/src/sulfur/dialogs.py:1376 +#: ../../sulfur/src/sulfur/dialogs.py:1376 #: ../../sulfur/src/sulfur/events.py:969 ../../sulfur/src/sulfur/events.py:978 #: ../../sulfur/src/sulfur/events.py:1019 #: ../../sulfur/src/sulfur/sulfur.glade.h:82 @@ -383,7 +383,7 @@ msgid "Cannot update SPM installed pkgs file" msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3150 -#: ../../libraries/entropy/server/interfaces/main.py:1628 +#: ../../libraries/entropy/server/interfaces/main.py:1640 #: ../../libraries/entropy/client/interfaces/db.py:403 #: ../../libraries/entropy/client/interfaces/db.py:452 #: ../../libraries/entropy/client/interfaces/db.py:506 @@ -417,7 +417,7 @@ msgstr "" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3285 #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:3437 -#: ../../libraries/entropy/server/interfaces/mirrors.py:570 +#: ../../libraries/entropy/server/interfaces/mirrors.py:586 #: ../../client/text_security.py:116 ../../client/text_smart.py:111 msgid "does not exist" msgstr "не існує" @@ -457,7 +457,7 @@ msgid "Error calculating dependencies" msgstr "Підрахунок залежностей" #: ../../libraries/entropy/spm/plugins/interfaces/portage_plugin/__init__.py:4133 -#: ../../libraries/entropy/server/interfaces/main.py:2849 +#: ../../libraries/entropy/server/interfaces/main.py:2861 msgid "not supported" msgstr "не підтримується" @@ -521,467 +521,467 @@ msgstr "з'єднання з дзеркалом" msgid "setting directory to" msgstr "зміна директорії на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:61 +#: ../../libraries/entropy/server/interfaces/mirrors.py:58 msgid "Entropy Server Mirrors Interface loaded" msgstr "Завантажено інтерфейс дзеркал сервера Entropy" -#: ../../libraries/entropy/server/interfaces/mirrors.py:69 +#: ../../libraries/entropy/server/interfaces/mirrors.py:66 #, fuzzy msgid "repository mirror" msgstr "репозиторій" -#: ../../libraries/entropy/server/interfaces/mirrors.py:78 +#: ../../libraries/entropy/server/interfaces/mirrors.py:75 #, fuzzy msgid "packages mirror" msgstr "Дзеркало пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:116 +#: ../../libraries/entropy/server/interfaces/mirrors.py:113 msgid "looking for file in mirror" msgstr "пошук файла на дзеркалі" -#: ../../libraries/entropy/server/interfaces/mirrors.py:201 -#: ../../libraries/entropy/server/interfaces/mirrors.py:306 +#: ../../libraries/entropy/server/interfaces/mirrors.py:199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:312 msgid "unlocking" msgstr "розблокування" -#: ../../libraries/entropy/server/interfaces/mirrors.py:203 -#: ../../libraries/entropy/server/interfaces/mirrors.py:308 -#: ../../libraries/entropy/server/interfaces/mirrors.py:854 -#: ../../libraries/entropy/server/interfaces/mirrors.py:874 +#: ../../libraries/entropy/server/interfaces/mirrors.py:201 +#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:870 +#: ../../libraries/entropy/server/interfaces/mirrors.py:890 msgid "locking" msgstr "блокування" -#: ../../libraries/entropy/server/interfaces/mirrors.py:209 +#: ../../libraries/entropy/server/interfaces/mirrors.py:207 msgid "mirror" msgstr "дзеркало" -#: ../../libraries/entropy/server/interfaces/mirrors.py:239 -#: ../../libraries/entropy/server/interfaces/mirrors.py:855 +#: ../../libraries/entropy/server/interfaces/mirrors.py:240 +#: ../../libraries/entropy/server/interfaces/mirrors.py:871 msgid "mirror already locked" msgstr "дзеркало вже заблоковано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:252 +#: ../../libraries/entropy/server/interfaces/mirrors.py:254 msgid "mirror already unlocked" msgstr "дзеркало вже розблоковано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:314 +#: ../../libraries/entropy/server/interfaces/mirrors.py:320 msgid "mirror for download" msgstr "дзеркало для завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:344 +#: ../../libraries/entropy/server/interfaces/mirrors.py:352 msgid "mirror already locked for download" msgstr "дзеркало вже заблоковано для завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:357 +#: ../../libraries/entropy/server/interfaces/mirrors.py:365 msgid "mirror already unlocked for download" msgstr "дзеркало вже розблоковано для завантаження" #. locking/unlocking mirror1 for download -#: ../../libraries/entropy/server/interfaces/mirrors.py:401 +#: ../../libraries/entropy/server/interfaces/mirrors.py:413 msgid "for download" msgstr "для завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:415 +#: ../../libraries/entropy/server/interfaces/mirrors.py:428 msgid "mirror successfully locked" msgstr "дзеркало вдало заблоковане" -#: ../../libraries/entropy/server/interfaces/mirrors.py:429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:443 msgid "mirror not locked" msgstr "дзеркало не заблоковане" -#: ../../libraries/entropy/server/interfaces/mirrors.py:470 +#: ../../libraries/entropy/server/interfaces/mirrors.py:485 msgid "mirror successfully unlocked" msgstr "дзеркало вдало розблоковане" -#: ../../libraries/entropy/server/interfaces/mirrors.py:488 +#: ../../libraries/entropy/server/interfaces/mirrors.py:504 msgid "unlock error" msgstr "помилка при розблокуванні" -#: ../../libraries/entropy/server/interfaces/mirrors.py:490 +#: ../../libraries/entropy/server/interfaces/mirrors.py:506 msgid "mirror not unlocked" msgstr "дзеркало не розблоковане" -#: ../../libraries/entropy/server/interfaces/mirrors.py:527 +#: ../../libraries/entropy/server/interfaces/mirrors.py:543 msgid "connecting to download package" msgstr "під'єднання для завантаження пакунку" -#: ../../libraries/entropy/server/interfaces/mirrors.py:549 +#: ../../libraries/entropy/server/interfaces/mirrors.py:565 msgid "downloading package" msgstr "завантаження пакунку" -#: ../../libraries/entropy/server/interfaces/mirrors.py:568 -#: ../../libraries/entropy/server/interfaces/mirrors.py:587 -#: ../../libraries/entropy/server/interfaces/mirrors.py:619 -#: ../../libraries/entropy/server/interfaces/mirrors.py:634 -#: ../../libraries/entropy/server/interfaces/mirrors.py:651 -#: ../../libraries/entropy/server/interfaces/main.py:2865 -#: ../../libraries/entropy/server/interfaces/main.py:3008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:584 +#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:635 +#: ../../libraries/entropy/server/interfaces/mirrors.py:650 +#: ../../libraries/entropy/server/interfaces/mirrors.py:667 +#: ../../libraries/entropy/server/interfaces/main.py:2877 +#: ../../libraries/entropy/server/interfaces/main.py:3020 msgid "package" msgstr "пакунок" -#: ../../libraries/entropy/server/interfaces/mirrors.py:589 +#: ../../libraries/entropy/server/interfaces/mirrors.py:605 msgid "is not listed in the repository !" msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:603 +#: ../../libraries/entropy/server/interfaces/mirrors.py:619 msgid "verifying checksum of package" msgstr "перевірка контрольної суми пакунку" -#: ../../libraries/entropy/server/interfaces/mirrors.py:621 +#: ../../libraries/entropy/server/interfaces/mirrors.py:637 msgid "downloaded successfully" msgstr "завантажено вдало" -#: ../../libraries/entropy/server/interfaces/mirrors.py:636 +#: ../../libraries/entropy/server/interfaces/mirrors.py:652 msgid "checksum does not match. re-downloading..." msgstr "контрольна сума не співпадає. Перезавантаження ..." -#: ../../libraries/entropy/server/interfaces/mirrors.py:653 +#: ../../libraries/entropy/server/interfaces/mirrors.py:669 msgid "seems broken. Consider to re-package it. Giving up!" msgstr "здається, зламалось. Спробуйте перепакувати. Здаюся!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:714 +#: ../../libraries/entropy/server/interfaces/mirrors.py:730 #, fuzzy msgid "mirror hasn't valid repository revision file" msgstr "на дзеркалі не знайдено нормального файла версії бази даних" -#: ../../libraries/entropy/server/interfaces/mirrors.py:734 +#: ../../libraries/entropy/server/interfaces/mirrors.py:750 msgid "unable to download repository revision" msgstr "неможливо завантажити виправлення репозиторію" -#: ../../libraries/entropy/server/interfaces/mirrors.py:748 +#: ../../libraries/entropy/server/interfaces/mirrors.py:764 msgid "mirror doesn't have valid revision file" msgstr "дзеркало не містить коректний файл виправлень" -#: ../../libraries/entropy/server/interfaces/mirrors.py:856 +#: ../../libraries/entropy/server/interfaces/mirrors.py:872 msgid "waiting up to 2 minutes before giving up" msgstr "чекаємо дві хвилини перед передачею даних" -#: ../../libraries/entropy/server/interfaces/mirrors.py:875 +#: ../../libraries/entropy/server/interfaces/mirrors.py:891 msgid "mirror unlocked" msgstr "дзеркало розблоковано" -#: ../../libraries/entropy/server/interfaces/mirrors.py:938 +#: ../../libraries/entropy/server/interfaces/mirrors.py:954 msgid "Local statistics" msgstr "Локальна статистика" -#: ../../libraries/entropy/server/interfaces/mirrors.py:946 +#: ../../libraries/entropy/server/interfaces/mirrors.py:962 msgid "upload directory" msgstr "директорія завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:948 -#: ../../libraries/entropy/server/interfaces/mirrors.py:959 +#: ../../libraries/entropy/server/interfaces/mirrors.py:964 +#: ../../libraries/entropy/server/interfaces/mirrors.py:975 msgid "files ready" msgstr "файли готові" -#: ../../libraries/entropy/server/interfaces/mirrors.py:957 +#: ../../libraries/entropy/server/interfaces/mirrors.py:973 msgid "packages directory" msgstr "директорія пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:978 -#: ../../libraries/entropy/server/interfaces/db.py:1348 -#: ../../libraries/entropy/server/interfaces/db.py:1368 +#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/db.py:1352 +#: ../../libraries/entropy/server/interfaces/db.py:1372 msgid "upload" msgstr "завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:994 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1010 #: ../../libraries/entropy/server/interfaces/db.py:683 -#: ../../libraries/entropy/server/interfaces/main.py:3321 -#: ../../libraries/entropy/server/interfaces/main.py:4197 +#: ../../libraries/entropy/server/interfaces/main.py:3333 +#: ../../libraries/entropy/server/interfaces/main.py:4215 msgid "download" msgstr "завантажити" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1008 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1024 msgid "copy" msgstr "копіювати" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1022 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2156 -#: ../../libraries/entropy/server/interfaces/main.py:2262 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1038 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2172 +#: ../../libraries/entropy/server/interfaces/main.py:2274 #: ../../libraries/entropy/client/interfaces/package.py:1581 -#: ../../client/text_ui.py:2203 ../../server/server_reagent.py:1176 -#: ../../server/eit/commands/status.py:161 +#: ../../client/text_ui.py:2203 ../../server/eit/commands/status.py:140 msgid "remove" msgstr "видалити" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1033 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1049 msgid "Packages to be removed" msgstr "Пакунки до видалення" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1042 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1058 msgid "Packages to be moved locally" msgstr "Пакунки до локального переміщення" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1051 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1067 msgid "Packages to be uploaded" msgstr "Пакунки до завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1061 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1077 msgid "Total removal size" msgstr "Загальний обсяг до видалення" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1073 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1089 msgid "Total upload size" msgstr "Загальний обсяг до завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1082 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1098 msgid "Total download size" msgstr "Загальний обсяг до завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1136 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 msgid "Remote statistics for" msgstr "Статистика віддалених операцій для" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1150 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1166 msgid "remote packages" msgstr "віддалені пакунки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1152 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1168 msgid "files stored" msgstr "збережені файли" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1160 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1176 msgid "Calculating queues" msgstr "Підрахунок черг" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1386 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1402 msgid "removing package+hash" msgstr "видалення пакунку і хеша" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1403 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1558 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1419 #: ../../libraries/entropy/server/interfaces/mirrors.py:1574 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1691 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1717 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1784 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1851 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1870 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1892 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1918 -#: ../../libraries/entropy/server/interfaces/db.py:1588 -#: ../../libraries/entropy/server/interfaces/db.py:1606 -#: ../../libraries/entropy/server/interfaces/db.py:1656 -#: ../../libraries/entropy/server/interfaces/db.py:1682 -#: ../../libraries/entropy/server/interfaces/db.py:1699 -#: ../../libraries/entropy/server/interfaces/db.py:1718 -#: ../../libraries/entropy/server/interfaces/db.py:1744 -#: ../../libraries/entropy/server/interfaces/db.py:1758 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1590 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1707 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1733 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1751 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1769 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1800 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1867 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1886 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1908 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1934 +#: ../../libraries/entropy/server/interfaces/db.py:1592 +#: ../../libraries/entropy/server/interfaces/db.py:1610 +#: ../../libraries/entropy/server/interfaces/db.py:1661 +#: ../../libraries/entropy/server/interfaces/db.py:1686 +#: ../../libraries/entropy/server/interfaces/db.py:1703 +#: ../../libraries/entropy/server/interfaces/db.py:1722 +#: ../../libraries/entropy/server/interfaces/db.py:1748 +#: ../../libraries/entropy/server/interfaces/db.py:1762 msgid "sync" msgstr "синхронізація" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1405 -#: ../../libraries/entropy/server/interfaces/main.py:2737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1421 +#: ../../libraries/entropy/server/interfaces/main.py:2749 msgid "removal complete" msgstr "видалення завершено" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1427 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1443 msgid "copying file+hash to repository" msgstr "копіювання файлу і хеша до головного репозиторію" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1485 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1501 msgid "upload errors" msgstr "помилки при завантаженні" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1487 -#: ../../libraries/entropy/server/interfaces/mirrors.py:1562 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2233 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1503 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1578 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2249 #: ../../libraries/entropy/server/interfaces/db.py:737 -#: ../../libraries/entropy/server/interfaces/db.py:1532 -#: ../../libraries/entropy/server/interfaces/main.py:2003 +#: ../../libraries/entropy/server/interfaces/db.py:1536 +#: ../../libraries/entropy/server/interfaces/main.py:2015 msgid "reason" msgstr "причина" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1499 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1515 msgid "upload completed successfully" msgstr "завантаження вдало завершене" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1560 -#: ../../libraries/entropy/server/interfaces/main.py:2002 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 +#: ../../libraries/entropy/server/interfaces/main.py:2014 msgid "download errors" msgstr "помилки завантаження" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1576 -#: ../../libraries/entropy/server/interfaces/main.py:2020 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1592 +#: ../../libraries/entropy/server/interfaces/main.py:2032 msgid "download completed successfully" msgstr "завантаження вдало завершене" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1615 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1631 msgid "QA checking package file" msgstr "QA перевіряє файл пакунку" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1641 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1657 msgid "faulty package file, please fix" msgstr "хибний файл пакунку, будь-ласка виправте" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1692 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1708 msgid "starting packages sync" msgstr "початок синхронізації пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1719 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1735 msgid "packages sync" msgstr "синхронізація пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1737 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1753 msgid "socket error" msgstr "помилка сокета" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1739 -#: ../../server/server_reagent.py:545 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 msgid "on" msgstr "на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1755 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1771 msgid "nothing to do on" msgstr "робити більше нічого на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1766 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1782 msgid "Expanding queues" msgstr "Розширення черг" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1786 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1802 msgid "nothing to sync for" msgstr "немає нічого до синхронізації для" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1803 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1819 msgid "Would you like to run the steps above ?" msgstr "Бажаєте застосувати вищезгадані кроки?" #. masked ? -#: ../../libraries/entropy/server/interfaces/mirrors.py:1804 -#: ../../libraries/entropy/server/interfaces/mirrors.py:2170 -#: ../../libraries/entropy/server/interfaces/main.py:1742 -#: ../../libraries/entropy/server/interfaces/main.py:1912 -#: ../../libraries/entropy/server/interfaces/main.py:2320 -#: ../../libraries/entropy/server/interfaces/main.py:2792 -#: ../../libraries/entropy/server/interfaces/main.py:3333 -#: ../../libraries/entropy/server/interfaces/main.py:4000 -#: ../../libraries/entropy/output.py:740 ../../client/text_smart.py:144 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1820 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2186 +#: ../../libraries/entropy/server/interfaces/main.py:1754 +#: ../../libraries/entropy/server/interfaces/main.py:1924 +#: ../../libraries/entropy/server/interfaces/main.py:2332 +#: ../../libraries/entropy/server/interfaces/main.py:2804 +#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:4020 +#: ../../libraries/entropy/output.py:742 ../../client/text_smart.py:144 #: ../../client/text_smart.py:323 ../../client/text_smart.py:475 #: ../../client/text_configuration.py:117 #: ../../client/text_configuration.py:144 ../../client/text_rescue.py:229 #: ../../client/text_rescue.py:233 ../../client/text_rescue.py:237 #: ../../client/text_rescue.py:520 ../../client/text_rescue.py:603 #: ../../client/text_rescue.py:606 ../../client/text_rescue.py:610 -#: ../../client/equo.py:966 ../../client/text_ui.py:486 +#: ../../client/equo.py:716 ../../client/text_ui.py:486 #: ../../client/text_ui.py:949 ../../client/text_ui.py:1537 #: ../../client/text_ui.py:1819 ../../client/text_ui.py:1903 #: ../../client/text_ui.py:2041 ../../client/text_ui.py:2048 #: ../../client/text_ui.py:2140 ../../client/text_ui.py:2312 -#: ../../client/text_ui.py:2422 ../../server/server_activator.py:175 -#: ../../server/server_key.py:224 ../../server/server_key.py:311 -#: ../../server/server_reagent.py:313 ../../server/server_reagent.py:471 -#: ../../server/server_reagent.py:519 ../../server/server_reagent.py:557 -#: ../../server/server_reagent.py:1042 ../../server/eit/commands/commit.py:319 +#: ../../client/text_ui.py:2422 ../../server/eit/commands/push.py:241 +#: ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:186 +#: ../../server/eit/commands/commit.py:309 +#: ../../server/eit/commands/remove.py:110 +#: ../../server/eit/commands/deps.py:196 ../../server/eit/commands/key.py:157 +#: ../../server/eit/commands/key.py:254 +#: ../../server/eit/commands/branch.py:126 #: ../../sulfur/src/sulfur/dialogs.py:1210 #: ../../sulfur/src/sulfur/entropyapi.py:395 msgid "No" msgstr "Ni" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1853 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1869 msgid "keyboard interrupt !" msgstr "клавіатура припинила роботу!!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1872 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1888 msgid "you must package them again" msgstr "вам необхідно знову їх запакувати" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1894 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1910 msgid "exception caught" msgstr "виявлено виняток" -#: ../../libraries/entropy/server/interfaces/mirrors.py:1921 +#: ../../libraries/entropy/server/interfaces/mirrors.py:1937 msgid "at least one mirror synced properly!" msgstr "принаймні одне дзеркало синхронізувалося нормально!" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2050 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 msgid "tidy" msgstr "чисто" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2052 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2068 msgid "collecting expired packages" msgstr "збірка застарілих пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2066 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2082 msgid "collecting expired packages in the selected branches" msgstr "збірка застарілих пакунків на обраній гілці" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2135 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2151 msgid "nothing to remove on this branch" msgstr "немає нічого до видалення з цієї гілки" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2146 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2162 msgid "these are the expired packages" msgstr "тут - застарілі пакунки" -#. ask to continue -#: ../../libraries/entropy/server/interfaces/mirrors.py:2169 -#: ../../libraries/entropy/server/interfaces/main.py:1911 -#: ../../libraries/entropy/server/interfaces/main.py:2319 -#: ../../libraries/entropy/server/interfaces/main.py:2791 -#: ../../libraries/entropy/server/interfaces/main.py:3332 -#: ../../client/text_ui.py:948 ../../server/server_reagent.py:470 -#: ../../server/server_reagent.py:518 ../../server/server_reagent.py:556 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2185 +#: ../../libraries/entropy/server/interfaces/main.py:1923 +#: ../../libraries/entropy/server/interfaces/main.py:2331 +#: ../../libraries/entropy/server/interfaces/main.py:2803 +#: ../../libraries/entropy/server/interfaces/main.py:3344 +#: ../../client/text_ui.py:948 ../../server/eit/commands/remove.py:109 +#: ../../server/eit/commands/branch.py:125 msgid "Would you like to continue ?" msgstr "Бажаєте продовжити?" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2199 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2215 msgid "removing packages remotely" msgstr "віддалене видалення пакунків" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2231 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2247 msgid "remove errors" msgstr "помилки при видаленні" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2245 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2261 msgid "removing packages locally" msgstr "локальне видалення пакунків" #. this means that user is asking to remove dep_pattern -#: ../../libraries/entropy/server/interfaces/mirrors.py:2277 -#: ../../libraries/entropy/server/interfaces/main.py:5849 -#: ../../libraries/entropy/server/interfaces/main.py:5951 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2293 +#: ../../libraries/entropy/server/interfaces/main.py:5874 +#: ../../libraries/entropy/server/interfaces/main.py:5976 #, fuzzy msgid "removed" msgstr "видалити" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2304 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2320 msgid "downloading notice board from mirrors to" msgstr "завантаження дошки повідомлень з дзеркал на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2331 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2347 msgid "notice board downloaded successfully from" msgstr "дошка повідомлень вдало завантажена з" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2364 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2380 #, fuzzy msgid "removing notice board from" msgstr "завантаження дошки повідомлень з" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2393 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2409 #, fuzzy msgid "notice board removal failed on" msgstr "завантаження дошки повідомлень закінчилось невдало на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2404 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2420 #, fuzzy msgid "notice board removal success" msgstr "дошка повідомлень вдало завантажена" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2429 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2445 msgid "uploading notice board from" msgstr "завантаження дошки повідомлень з" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2456 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2472 msgid "notice board upload failed on" msgstr "завантаження дошки повідомлень закінчилось невдало на" -#: ../../libraries/entropy/server/interfaces/mirrors.py:2467 +#: ../../libraries/entropy/server/interfaces/mirrors.py:2483 msgid "notice board upload success" msgstr "дошка повідомлень вдало завантажена" #: ../../libraries/entropy/server/interfaces/db.py:329 -#: ../../libraries/entropy/server/interfaces/main.py:3155 +#: ../../libraries/entropy/server/interfaces/main.py:3167 msgid "Keys for repository are expired" msgstr "" @@ -995,8 +995,8 @@ msgid "download path" msgstr "шлях завантаження" #: ../../libraries/entropy/server/interfaces/db.py:729 -#: ../../libraries/entropy/server/interfaces/db.py:790 -#: ../../libraries/entropy/server/interfaces/db.py:1519 +#: ../../libraries/entropy/server/interfaces/db.py:794 +#: ../../libraries/entropy/server/interfaces/db.py:1523 msgid "errors" msgstr "помилки" @@ -1004,284 +1004,296 @@ msgstr "помилки" msgid "failed to download from mirror" msgstr "не вдалося завантажити з дзеркала" -#: ../../libraries/entropy/server/interfaces/db.py:791 +#: ../../libraries/entropy/server/interfaces/db.py:795 #, fuzzy msgid "failed to unpack" msgstr "Неможливо розпакувати" -#: ../../libraries/entropy/server/interfaces/db.py:1059 +#: ../../libraries/entropy/server/interfaces/db.py:1063 msgid "Troubles with treeupdates" msgstr "Проблеми з оновленням дерева залежностей" -#: ../../libraries/entropy/server/interfaces/db.py:1062 +#: ../../libraries/entropy/server/interfaces/db.py:1066 msgid "Bumping old data back" msgstr "Повернення застарілої інформації назад" -#: ../../libraries/entropy/server/interfaces/db.py:1076 +#: ../../libraries/entropy/server/interfaces/db.py:1080 msgid "configured package sets" msgstr "налаштовані набори пакунків" -#: ../../libraries/entropy/server/interfaces/db.py:1086 +#: ../../libraries/entropy/server/interfaces/db.py:1090 msgid "None configured" msgstr "Нічого не налаштовано" -#: ../../libraries/entropy/server/interfaces/db.py:1126 +#: ../../libraries/entropy/server/interfaces/db.py:1130 #, fuzzy msgid "creating compressed repository dump + checksum" msgstr "створення стисненого дампу бази даних + контрольної суми" -#: ../../libraries/entropy/server/interfaces/db.py:1133 -#: ../../libraries/entropy/server/interfaces/db.py:1181 -#: ../../libraries/entropy/server/interfaces/db.py:1235 +#: ../../libraries/entropy/server/interfaces/db.py:1137 +#: ../../libraries/entropy/server/interfaces/db.py:1185 +#: ../../libraries/entropy/server/interfaces/db.py:1239 #, fuzzy msgid "repository path" msgstr "репозиторій" -#: ../../libraries/entropy/server/interfaces/db.py:1140 +#: ../../libraries/entropy/server/interfaces/db.py:1144 msgid "dump light" msgstr "легкий дамп" -#: ../../libraries/entropy/server/interfaces/db.py:1149 +#: ../../libraries/entropy/server/interfaces/db.py:1153 msgid "dump light checksum" msgstr "контрольна сума легкого дампу" -#: ../../libraries/entropy/server/interfaces/db.py:1158 -#: ../../libraries/entropy/server/interfaces/db.py:1214 +#: ../../libraries/entropy/server/interfaces/db.py:1162 +#: ../../libraries/entropy/server/interfaces/db.py:1218 msgid "opener" msgstr "відкривач" -#: ../../libraries/entropy/server/interfaces/db.py:1173 +#: ../../libraries/entropy/server/interfaces/db.py:1177 #, fuzzy msgid "compressing repository + checksum" msgstr "стиснення бази даних + контрольної суми" -#: ../../libraries/entropy/server/interfaces/db.py:1188 +#: ../../libraries/entropy/server/interfaces/db.py:1192 #, fuzzy msgid "compressed repository path" msgstr "складено інформацію репозиторію" -#: ../../libraries/entropy/server/interfaces/db.py:1197 +#: ../../libraries/entropy/server/interfaces/db.py:1201 #, fuzzy msgid "repository checksum" msgstr "репозиторії" -#: ../../libraries/entropy/server/interfaces/db.py:1206 +#: ../../libraries/entropy/server/interfaces/db.py:1210 msgid "compressed checksum" msgstr "контрольна сума стисненої бази даних" -#: ../../libraries/entropy/server/interfaces/db.py:1228 +#: ../../libraries/entropy/server/interfaces/db.py:1232 #, fuzzy msgid "preparing uncompressed repository for the upload" msgstr "підготовка незтисненої бази даних до звантаження" -#: ../../libraries/entropy/server/interfaces/db.py:1349 +#: ../../libraries/entropy/server/interfaces/db.py:1353 msgid "disabled EAPI" msgstr "деактивований EAPI" -#: ../../libraries/entropy/server/interfaces/db.py:1369 +#: ../../libraries/entropy/server/interfaces/db.py:1373 #, fuzzy msgid "preparing to upload repository to mirror" msgstr "підготовка до завантаження бази даних на дзеркало" -#: ../../libraries/entropy/server/interfaces/db.py:1520 +#: ../../libraries/entropy/server/interfaces/db.py:1524 #, fuzzy msgid "upload failed, locking and continuing" msgstr "завантаження закінчилось невдало, не розблоковується і триває" #. something short please -#: ../../libraries/entropy/server/interfaces/db.py:1589 +#: ../../libraries/entropy/server/interfaces/db.py:1593 #, fuzzy msgid "repository already in sync" msgstr "вже вимкнено" -#: ../../libraries/entropy/server/interfaces/db.py:1607 -#: ../../libraries/entropy/server/interfaces/db.py:1745 +#: ../../libraries/entropy/server/interfaces/db.py:1611 +#: ../../libraries/entropy/server/interfaces/db.py:1749 #, fuzzy msgid "repository sync failed" msgstr "Ім'я репозиторію" -#: ../../libraries/entropy/server/interfaces/db.py:1608 +#: ../../libraries/entropy/server/interfaces/db.py:1612 msgid "download issues" msgstr "Проблеми з завантаженням" -#: ../../libraries/entropy/server/interfaces/db.py:1657 -#: ../../libraries/entropy/server/interfaces/db.py:1683 -#: ../../libraries/entropy/server/interfaces/db.py:1700 +#: ../../libraries/entropy/server/interfaces/db.py:1662 +#: ../../libraries/entropy/server/interfaces/db.py:1687 +#: ../../libraries/entropy/server/interfaces/db.py:1704 #, fuzzy msgid "repository sync forbidden" msgstr "переглядач дошки повідомлень репозиторію" -#: ../../libraries/entropy/server/interfaces/db.py:1658 +#: ../../libraries/entropy/server/interfaces/db.py:1663 #, fuzzy msgid "missing package sets" msgstr "налаштовані набори пакунків" -#: ../../libraries/entropy/server/interfaces/db.py:1684 +#: ../../libraries/entropy/server/interfaces/db.py:1688 #, fuzzy msgid "dependencies test reported errors" msgstr "dependencies_test() доповідає про помилки" -#: ../../libraries/entropy/server/interfaces/db.py:1719 +#: ../../libraries/entropy/server/interfaces/db.py:1723 #, fuzzy msgid "these packages haven't been removed yet" msgstr "Ось пакунки, що мають бути видалені" -#: ../../libraries/entropy/server/interfaces/db.py:1746 +#: ../../libraries/entropy/server/interfaces/db.py:1750 msgid "upload issues" msgstr "проблеми з завантаженням" -#: ../../libraries/entropy/server/interfaces/db.py:1759 +#: ../../libraries/entropy/server/interfaces/db.py:1763 #, fuzzy msgid "repository sync completed successfully" msgstr "синхронізацію бази даних вдало завершено" -#: ../../libraries/entropy/server/interfaces/main.py:149 +#: ../../libraries/entropy/server/interfaces/main.py:150 #, fuzzy msgid "mirrors have not been unlocked. Sync them." msgstr "Дзеркала не розблоковані. Не забудьте їх синхронізувати." -#: ../../libraries/entropy/server/interfaces/main.py:235 +#: ../../libraries/entropy/server/interfaces/main.py:236 #, fuzzy msgid "cannot store updates RSS cache" msgstr "неможливо оновити інформацію дерева оновлень" -#: ../../libraries/entropy/server/interfaces/main.py:387 +#: ../../libraries/entropy/server/interfaces/main.py:388 msgid "INJECT" msgstr "ДОДАТИ" -#: ../../libraries/entropy/server/interfaces/main.py:389 +#: ../../libraries/entropy/server/interfaces/main.py:390 msgid "has been injected" msgstr "додано" -#: ../../libraries/entropy/server/interfaces/main.py:390 +#: ../../libraries/entropy/server/interfaces/main.py:391 msgid "quickpkg manually to update embedded db" msgstr "виконайте quickpkg власноруч, щоб оновити вбудовану базу даних" -#: ../../libraries/entropy/server/interfaces/main.py:391 +#: ../../libraries/entropy/server/interfaces/main.py:392 #, fuzzy msgid "Repository updated anyway" msgstr "База даних репозиторію оновлена в будь-якому випадку" -#: ../../libraries/entropy/server/interfaces/main.py:1041 +#: ../../libraries/entropy/server/interfaces/main.py:1055 msgid "package has no keyword set, it will be masked !" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:1132 -#: ../../libraries/entropy/server/interfaces/main.py:3959 +#: ../../libraries/entropy/server/interfaces/main.py:1144 +#: ../../libraries/entropy/server/interfaces/main.py:3981 msgid "repository not configured" msgstr "репозиторій не налаштовано" -#: ../../libraries/entropy/server/interfaces/main.py:1138 +#: ../../libraries/entropy/server/interfaces/main.py:1150 msgid "protected repository id, can't use this, sorry dude..." msgstr "" "ID захищеного репозиторію, його неможливо використовувати, звиняйте, куме..." -#: ../../libraries/entropy/server/interfaces/main.py:1488 +#: ../../libraries/entropy/server/interfaces/main.py:1500 #, fuzzy msgid "invalid repository revision" msgstr "Перевірка репозиторію" -#: ../../libraries/entropy/server/interfaces/main.py:1490 +#: ../../libraries/entropy/server/interfaces/main.py:1502 msgid "defaulting to 0" msgstr "встановлено за замовчуванням на 0" -#: ../../libraries/entropy/server/interfaces/main.py:1583 -#: ../../libraries/entropy/server/interfaces/main.py:4195 -#: ../../libraries/entropy/server/interfaces/main.py:4427 -#: ../../client/text_ugc.py:111 ../../server/server_reagent.py:85 -#: ../../server/server_reagent.py:90 ../../server/server_reagent.py:103 -#: ../../server/server_reagent.py:107 ../../server/server_reagent.py:144 -#: ../../server/server_reagent.py:179 ../../server/server_reagent.py:215 -#: ../../server/server_reagent.py:357 ../../server/server_reagent.py:384 -#: ../../server/server_reagent.py:412 ../../sulfur/src/sulfur/views.py:2021 +#: ../../libraries/entropy/server/interfaces/main.py:1595 +#: ../../libraries/entropy/server/interfaces/main.py:4213 +#: ../../libraries/entropy/server/interfaces/main.py:4451 +#: ../../client/text_ugc.py:111 ../../server/eit/commands/test.py:77 +#: ../../server/eit/commands/test.py:86 ../../server/eit/commands/status.py:45 +#: ../../server/eit/commands/list.py:50 ../../server/eit/commands/init.py:41 +#: ../../server/eit/commands/reset.py:46 +#: ../../server/eit/commands/checkout.py:41 +#: ../../server/eit/commands/bump.py:41 ../../server/eit/commands/push.py:60 +#: ../../server/eit/commands/notice.py:54 +#: ../../server/eit/commands/notice.py:60 +#: ../../server/eit/commands/notice.py:66 +#: ../../server/eit/commands/commit.py:54 ../../server/eit/commands/log.py:41 +#: ../../server/eit/commands/lock.py:49 +#: ../../server/eit/commands/cleanup.py:41 +#: ../../server/eit/commands/vacuum.py:47 ../../server/eit/commands/key.py:56 +#: ../../server/eit/commands/key.py:62 ../../server/eit/commands/key.py:68 +#: ../../server/eit/commands/key.py:74 ../../server/eit/commands/key.py:80 +#: ../../server/eit/commands/key.py:92 ../../server/eit/commands/key.py:101 +#: ../../server/eit/commands/branch.py:57 +#: ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 msgid "repository" msgstr "репозиторій" -#: ../../libraries/entropy/server/interfaces/main.py:1584 +#: ../../libraries/entropy/server/interfaces/main.py:1596 #, fuzzy msgid "syncing package sets" msgstr "налаштовані набори пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:1629 +#: ../../libraries/entropy/server/interfaces/main.py:1641 msgid "cannot match" msgstr "неможливо співставити" -#: ../../libraries/entropy/server/interfaces/main.py:1729 +#: ../../libraries/entropy/server/interfaces/main.py:1741 #, fuzzy msgid "initializing repository" msgstr "Ініціалізація бази даних Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:1739 +#: ../../libraries/entropy/server/interfaces/main.py:1751 #, fuzzy msgid "do you really want to initialize this repository ?" msgstr "Ви бажаєте ініціалізувати Ваш репозиторій за замовчуванням?" -#: ../../libraries/entropy/server/interfaces/main.py:1780 +#: ../../libraries/entropy/server/interfaces/main.py:1792 msgid "Invalid tag specified" msgstr "обраний невірний тег" -#: ../../libraries/entropy/server/interfaces/main.py:1826 +#: ../../libraries/entropy/server/interfaces/main.py:1838 msgid "flushing back selected packages from branches" msgstr "повернення обраних пакунків з гілок" -#: ../../libraries/entropy/server/interfaces/main.py:1852 +#: ../../libraries/entropy/server/interfaces/main.py:1864 msgid "nothing to do" msgstr "більше немає чого робити" -#: ../../libraries/entropy/server/interfaces/main.py:1876 +#: ../../libraries/entropy/server/interfaces/main.py:1888 msgid "these are the packages that will be flushed" msgstr "ось пакунки, які будуть повернуті" -#: ../../libraries/entropy/server/interfaces/main.py:1961 +#: ../../libraries/entropy/server/interfaces/main.py:1973 msgid "checking package hash" msgstr "перевірка хеша пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:1980 +#: ../../libraries/entropy/server/interfaces/main.py:1992 msgid "hash does not match for" msgstr "хеш не співпадає для" -#: ../../libraries/entropy/server/interfaces/main.py:1990 +#: ../../libraries/entropy/server/interfaces/main.py:2002 msgid "wrong md5" msgstr "невірна md5-сума" -#: ../../libraries/entropy/server/interfaces/main.py:2034 +#: ../../libraries/entropy/server/interfaces/main.py:2046 msgid "error downloading packages from mirrors" msgstr "помилка при завантаженні пакунків з дзеркал" -#: ../../libraries/entropy/server/interfaces/main.py:2049 +#: ../../libraries/entropy/server/interfaces/main.py:2061 msgid "working on branch" msgstr "робота з гілкою" -#: ../../libraries/entropy/server/interfaces/main.py:2065 +#: ../../libraries/entropy/server/interfaces/main.py:2077 msgid "updating package" msgstr "оновлення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:2102 +#: ../../libraries/entropy/server/interfaces/main.py:2114 msgid "package flushed" msgstr "пакунок повернуто" -#: ../../libraries/entropy/server/interfaces/main.py:2182 +#: ../../libraries/entropy/server/interfaces/main.py:2194 #, fuzzy msgid "Cannot touch system repository" msgstr "Неможливо взаємодіяти з системною базою даних" -#: ../../libraries/entropy/server/interfaces/main.py:2197 +#: ../../libraries/entropy/server/interfaces/main.py:2209 msgid "Preparing to move selected packages to" msgstr "Підготовка до переміщення обраних пакунків у" -#: ../../libraries/entropy/server/interfaces/main.py:2199 +#: ../../libraries/entropy/server/interfaces/main.py:2211 msgid "Preparing to copy selected packages to" msgstr "Підготовка до копіювання обраних пакунків у" -#: ../../libraries/entropy/server/interfaces/main.py:2211 +#: ../../libraries/entropy/server/interfaces/main.py:2223 #: ../../sulfur/src/sulfur/sulfur.glade.h:137 msgid "Note" msgstr "Зауваження" -#: ../../libraries/entropy/server/interfaces/main.py:2212 +#: ../../libraries/entropy/server/interfaces/main.py:2224 msgid "" "all old packages with conflicting scope will be removed from destination " "repo unless injected" @@ -1289,449 +1301,448 @@ msgstr "" "всі старі пакунки з конфліктуючими можливостями будуть видалені зрепозиторію " "призначення ще перед додаванням" -#: ../../libraries/entropy/server/interfaces/main.py:2222 +#: ../../libraries/entropy/server/interfaces/main.py:2234 msgid "new tag" msgstr "новий тег" -#: ../../libraries/entropy/server/interfaces/main.py:2294 +#: ../../libraries/entropy/server/interfaces/main.py:2306 #, fuzzy msgid "reverse dependency" msgstr "Зворотні залежності" -#: ../../libraries/entropy/server/interfaces/main.py:2305 +#: ../../libraries/entropy/server/interfaces/main.py:2317 msgid "dependency" msgstr "залежність" -#: ../../libraries/entropy/server/interfaces/main.py:2337 +#: ../../libraries/entropy/server/interfaces/main.py:2349 msgid "switching" msgstr "переключення" -#: ../../libraries/entropy/server/interfaces/main.py:2357 +#: ../../libraries/entropy/server/interfaces/main.py:2369 msgid "cannot switch, package not found, skipping" msgstr "неможливо переключити, пакунок не знайдений, пропускаємо" -#: ../../libraries/entropy/server/interfaces/main.py:2443 +#: ../../libraries/entropy/server/interfaces/main.py:2455 msgid "moving file" msgstr "переміщення файлу" -#: ../../libraries/entropy/server/interfaces/main.py:2459 +#: ../../libraries/entropy/server/interfaces/main.py:2471 #, fuzzy msgid "loading data from source repository" msgstr "завантаження інформації з бази даних джерела" -#: ../../libraries/entropy/server/interfaces/main.py:2489 +#: ../../libraries/entropy/server/interfaces/main.py:2501 #, fuzzy msgid "GPG key was available in" msgstr "найновіша версія -" -#: ../../libraries/entropy/server/interfaces/main.py:2514 +#: ../../libraries/entropy/server/interfaces/main.py:2526 #, fuzzy msgid "injecting data to destination repository" msgstr "введення інформації в базу даних призначення" -#: ../../libraries/entropy/server/interfaces/main.py:2534 +#: ../../libraries/entropy/server/interfaces/main.py:2546 #, fuzzy msgid "removing entry from source repository" msgstr "видалення запису з джерела бази даних" -#: ../../libraries/entropy/server/interfaces/main.py:2552 +#: ../../libraries/entropy/server/interfaces/main.py:2564 msgid "successfully handled atom" msgstr "вдало оброблений атом" -#: ../../libraries/entropy/server/interfaces/main.py:2579 +#: ../../libraries/entropy/server/interfaces/main.py:2591 msgid "Injecting entropy metadata into built packages" msgstr "Додавання мета-інформації entropy в зібрані пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:2595 +#: ../../libraries/entropy/server/interfaces/main.py:2607 msgid "JFYI, GPG infrastructure failed to load" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:2649 +#: ../../libraries/entropy/server/interfaces/main.py:2661 msgid "injecting entropy metadata" msgstr "додавання мета-інформації entropy" -#: ../../libraries/entropy/server/interfaces/main.py:2697 +#: ../../libraries/entropy/server/interfaces/main.py:2709 msgid "injection complete" msgstr "додавання завершено" -#: ../../libraries/entropy/server/interfaces/main.py:2724 +#: ../../libraries/entropy/server/interfaces/main.py:2736 msgid "removing package" msgstr "видалення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:2749 -#: ../../libraries/entropy/server/interfaces/main.py:2952 +#: ../../libraries/entropy/server/interfaces/main.py:2761 +#: ../../libraries/entropy/server/interfaces/main.py:2964 msgid "Integrity verification of the selected packages" msgstr "Перевірка цілісності обраних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2764 -#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:2776 +#: ../../libraries/entropy/server/interfaces/main.py:2975 msgid "All the packages in repository will be checked." msgstr "Всі пакунки в репозиторії Entropy Packages будуть перевірені." -#: ../../libraries/entropy/server/interfaces/main.py:2771 +#: ../../libraries/entropy/server/interfaces/main.py:2783 msgid "This is the list of the packages that would be checked" msgstr "Ось перелік пакунків, які будуть перевірені" -#: ../../libraries/entropy/server/interfaces/main.py:2805 +#: ../../libraries/entropy/server/interfaces/main.py:2817 msgid "Working on mirror" msgstr "Робота з дзеркалом" -#: ../../libraries/entropy/server/interfaces/main.py:2832 +#: ../../libraries/entropy/server/interfaces/main.py:2844 msgid "checking hash" msgstr "перевірка хеша" -#: ../../libraries/entropy/server/interfaces/main.py:2847 +#: ../../libraries/entropy/server/interfaces/main.py:2859 msgid "digest verification of" msgstr "перевірка списків" -#: ../../libraries/entropy/server/interfaces/main.py:2867 +#: ../../libraries/entropy/server/interfaces/main.py:2879 msgid "NOT healthy" msgstr "НЕ все гаразд" -#: ../../libraries/entropy/server/interfaces/main.py:2880 -#: ../../libraries/entropy/server/interfaces/main.py:3020 +#: ../../libraries/entropy/server/interfaces/main.py:2892 +#: ../../libraries/entropy/server/interfaces/main.py:3032 msgid "This is the list of broken packages" msgstr "Ось перелік зламаних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2889 +#: ../../libraries/entropy/server/interfaces/main.py:2901 #: ../../libraries/entropy/client/interfaces/package.py:297 #: ../../libraries/entropy/client/interfaces/package.py:939 msgid "Mirror" msgstr "Дзеркало" -#: ../../libraries/entropy/server/interfaces/main.py:2908 -#: ../../server/server_reagent.py:1076 ../../server/eit/commands/commit.py:357 +#: ../../libraries/entropy/server/interfaces/main.py:2920 +#: ../../server/eit/commands/commit.py:353 msgid "Statistics" msgstr "Статистика" -#: ../../libraries/entropy/server/interfaces/main.py:2917 +#: ../../libraries/entropy/server/interfaces/main.py:2929 msgid "Number of checked packages" msgstr "Кількість перевірених пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2927 +#: ../../libraries/entropy/server/interfaces/main.py:2939 msgid "Number of healthy packages" msgstr "Число нормальних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2937 +#: ../../libraries/entropy/server/interfaces/main.py:2949 msgid "Number of broken packages" msgstr "Число зламаних пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:2951 -#: ../../libraries/entropy/server/interfaces/main.py:3108 +#: ../../libraries/entropy/server/interfaces/main.py:2963 +#: ../../libraries/entropy/server/interfaces/main.py:3120 #: ../../libraries/entropy/client/interfaces/db.py:1718 msgid "local" msgstr "локально" -#: ../../libraries/entropy/server/interfaces/main.py:2988 +#: ../../libraries/entropy/server/interfaces/main.py:3000 msgid "checking status of" msgstr "перевірка статусу для" -#: ../../libraries/entropy/server/interfaces/main.py:3010 +#: ../../libraries/entropy/server/interfaces/main.py:3022 msgid "is corrupted, stored checksum" msgstr "зіпсований, збережена контрольна сума" -#: ../../libraries/entropy/server/interfaces/main.py:3047 +#: ../../libraries/entropy/server/interfaces/main.py:3059 msgid "checked packages" msgstr "перевірені пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3057 +#: ../../libraries/entropy/server/interfaces/main.py:3069 msgid "healthy packages" msgstr "нормальні пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3067 -#: ../../libraries/entropy/server/interfaces/main.py:3249 +#: ../../libraries/entropy/server/interfaces/main.py:3079 +#: ../../libraries/entropy/server/interfaces/main.py:3261 msgid "broken packages" msgstr "зламані пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3077 -#: ../../libraries/entropy/server/interfaces/main.py:3259 +#: ../../libraries/entropy/server/interfaces/main.py:3089 +#: ../../libraries/entropy/server/interfaces/main.py:3271 msgid "downloaded packages" msgstr "завантажені пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3087 -#: ../../libraries/entropy/server/interfaces/main.py:3269 +#: ../../libraries/entropy/server/interfaces/main.py:3099 +#: ../../libraries/entropy/server/interfaces/main.py:3281 msgid "failed downloads" msgstr "невдалі завантаження" -#: ../../libraries/entropy/server/interfaces/main.py:3109 +#: ../../libraries/entropy/server/interfaces/main.py:3121 #, fuzzy msgid "GPG signing packages for repository" msgstr "використання пакунків у репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:3121 +#: ../../libraries/entropy/server/interfaces/main.py:3133 #, fuzzy msgid "All the missing packages in repository will be downloaded." msgstr "Всі пакунки в репозиторії Entropy Packages будуть перевірені." -#: ../../libraries/entropy/server/interfaces/main.py:3137 -#: ../../server/server_key.py:69 +#: ../../libraries/entropy/server/interfaces/main.py:3149 +#: ../../server/eit/commands/key.py:131 #, fuzzy msgid "GnuPG not available" msgstr "недоступний" -#: ../../libraries/entropy/server/interfaces/main.py:3163 +#: ../../libraries/entropy/server/interfaces/main.py:3175 #, fuzzy msgid "Keys not available for" msgstr "недоступний" -#: ../../libraries/entropy/server/interfaces/main.py:3194 +#: ../../libraries/entropy/server/interfaces/main.py:3206 #, fuzzy msgid "signing package" msgstr "Об'єднання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3209 +#: ../../libraries/entropy/server/interfaces/main.py:3221 #, fuzzy msgid "Unknown error signing package" msgstr "Об'єднання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3239 +#: ../../libraries/entropy/server/interfaces/main.py:3251 #, fuzzy msgid "signed packages" msgstr "замаскований пакунок" -#: ../../libraries/entropy/server/interfaces/main.py:3298 +#: ../../libraries/entropy/server/interfaces/main.py:3310 msgid "available" msgstr "наявно" -#: ../../libraries/entropy/server/interfaces/main.py:3310 +#: ../../libraries/entropy/server/interfaces/main.py:3322 msgid "upload/ignored" msgstr "завантажено/пропущено" -#: ../../libraries/entropy/server/interfaces/main.py:3345 +#: ../../libraries/entropy/server/interfaces/main.py:3357 msgid "Starting to download missing files" msgstr "Початок завантаження відсутніх файлів" -#: ../../libraries/entropy/server/interfaces/main.py:3356 +#: ../../libraries/entropy/server/interfaces/main.py:3368 msgid "Searching missing/broken files on another mirror" msgstr "Пошук відсутніх/зламаних файлів на іншому дзеркалі" -#: ../../libraries/entropy/server/interfaces/main.py:3377 +#: ../../libraries/entropy/server/interfaces/main.py:3389 msgid "Binary packages downloaded successfully." msgstr "Бінарні пакунки вдало завантажено." -#: ../../libraries/entropy/server/interfaces/main.py:3386 +#: ../../libraries/entropy/server/interfaces/main.py:3398 msgid "These are the packages that cannot be found online" msgstr "А ось ці пакунки не можуть бути знайдені в інтернеті" -#: ../../libraries/entropy/server/interfaces/main.py:3402 +#: ../../libraries/entropy/server/interfaces/main.py:3414 msgid "They won't be checked" msgstr "Вони не будуть перевірені" -#: ../../libraries/entropy/server/interfaces/main.py:3416 +#: ../../libraries/entropy/server/interfaces/main.py:3428 msgid "Please setup your branch to" msgstr "Встановіть Вашу гілку на" -#: ../../libraries/entropy/server/interfaces/main.py:3418 +#: ../../libraries/entropy/server/interfaces/main.py:3430 msgid "and retry" msgstr "і спробуйте" -#: ../../libraries/entropy/server/interfaces/main.py:3428 +#: ../../libraries/entropy/server/interfaces/main.py:3440 #, fuzzy msgid "Copying repository (if not exists)" msgstr "Копіювання бази даних (якщо копії ще не існує)" -#: ../../libraries/entropy/server/interfaces/main.py:3461 +#: ../../libraries/entropy/server/interfaces/main.py:3473 msgid "Switching packages" msgstr "Перемикання пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3496 +#: ../../libraries/entropy/server/interfaces/main.py:3508 msgid "Ignoring" msgstr "Пропускаємо" -#: ../../libraries/entropy/server/interfaces/main.py:3498 +#: ../../libraries/entropy/server/interfaces/main.py:3510 msgid "already in branch" msgstr "вже на гілці" -#: ../../libraries/entropy/server/interfaces/main.py:3532 +#: ../../libraries/entropy/server/interfaces/main.py:3544 msgid "migration loop completed" msgstr "міграційний цикл завершений" -#: ../../libraries/entropy/server/interfaces/main.py:3550 +#: ../../libraries/entropy/server/interfaces/main.py:3562 msgid "Running orphaned SPM packages test" msgstr "Виконання тесту осиротілих пакунків SPM" -#: ../../libraries/entropy/server/interfaces/main.py:3566 +#: ../../libraries/entropy/server/interfaces/main.py:3578 msgid "Scanning package" msgstr "Сканування пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:3592 +#: ../../libraries/entropy/server/interfaces/main.py:3604 msgid "not found anymore" msgstr "більше нічого не знайдено" -#: ../../libraries/entropy/server/interfaces/main.py:3604 -#: ../../libraries/entropy/server/interfaces/main.py:3879 +#: ../../libraries/entropy/server/interfaces/main.py:3616 +#: ../../libraries/entropy/server/interfaces/main.py:3891 msgid "Packages string" msgstr "Рядок пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3635 +#: ../../libraries/entropy/server/interfaces/main.py:3647 msgid "Checking" msgstr "Перевірка" -#: ../../libraries/entropy/server/interfaces/main.py:3700 +#: ../../libraries/entropy/server/interfaces/main.py:3712 msgid "Running dependencies test" msgstr "Виконуємо тест залежностей" -#: ../../libraries/entropy/server/interfaces/main.py:3732 +#: ../../libraries/entropy/server/interfaces/main.py:3744 #: ../../client/text_ui.py:2302 msgid "These are the dependencies not found" msgstr "Є незнайдені залежності" -#: ../../libraries/entropy/server/interfaces/main.py:3739 +#: ../../libraries/entropy/server/interfaces/main.py:3751 #: ../../client/text_ui.py:2306 msgid "Needed by" msgstr "Необхідно для" -#: ../../libraries/entropy/server/interfaces/main.py:3757 +#: ../../libraries/entropy/server/interfaces/main.py:3769 msgid "by repo" msgstr "для репозиторію" -#: ../../libraries/entropy/server/interfaces/main.py:3767 +#: ../../libraries/entropy/server/interfaces/main.py:3779 msgid "Every dependency is satisfied. It's all fine." msgstr "Всі залежності задоволені. З чим і вітаю." -#: ../../libraries/entropy/server/interfaces/main.py:3793 +#: ../../libraries/entropy/server/interfaces/main.py:3805 msgid "Broken and matched packages list" msgstr "Перелік зламаних та підходящих пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3795 +#: ../../libraries/entropy/server/interfaces/main.py:3807 #: ../../libraries/entropy/qa.py:642 msgid "Dumping results into these files" msgstr "Запис результатів у ці файли" -#: ../../libraries/entropy/server/interfaces/main.py:3821 +#: ../../libraries/entropy/server/interfaces/main.py:3833 #: ../../client/text_ui.py:2358 ../../client/text_ui.py:2382 msgid "System is healthy" msgstr "З системою все гаразд" -#: ../../libraries/entropy/server/interfaces/main.py:3830 +#: ../../libraries/entropy/server/interfaces/main.py:3842 msgid "Matching libraries with Spm, please wait" msgstr "Порівняння бібліотек з SPM, почекайте" -#: ../../libraries/entropy/server/interfaces/main.py:3844 +#: ../../libraries/entropy/server/interfaces/main.py:3856 msgid "These are the matched packages" msgstr "Ось підходящі пакунки" -#: ../../libraries/entropy/server/interfaces/main.py:3888 +#: ../../libraries/entropy/server/interfaces/main.py:3900 msgid "No matched packages" msgstr "Немає підходящих пакунків" -#: ../../libraries/entropy/server/interfaces/main.py:3987 +#: ../../libraries/entropy/server/interfaces/main.py:4007 msgid "Your default repository is not initialized" msgstr "Ваш репозиторій за замовчуванням не ініціалізовано" -#: ../../libraries/entropy/server/interfaces/main.py:3999 +#: ../../libraries/entropy/server/interfaces/main.py:4019 msgid "Do you want to initialize your default repository ?" msgstr "Ви бажаєте ініціалізувати Ваш репозиторій за замовчуванням?" -#: ../../libraries/entropy/server/interfaces/main.py:4002 +#: ../../libraries/entropy/server/interfaces/main.py:4022 msgid "Continuing with an uninitialized repository" msgstr "Продовжуємо з неініціалізованим репозиторієм" -#: ../../libraries/entropy/server/interfaces/main.py:4154 +#: ../../libraries/entropy/server/interfaces/main.py:4172 #, fuzzy msgid "Entropy repository is already locked by you :-)" msgstr "База даних Entropy вже заблокована тобою :-)" #. check if the database is locked REMOTELY -#: ../../libraries/entropy/server/interfaces/main.py:4161 +#: ../../libraries/entropy/server/interfaces/main.py:4179 #, fuzzy msgid "Locking and Syncing Entropy repository" msgstr "Блокування та синхронізація бази даних Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4175 -#: ../../server/server_activator.py:508 +#: ../../libraries/entropy/server/interfaces/main.py:4193 msgid "Mirrors status table" msgstr "Таблиця додаткових репозиторіїв" -#: ../../libraries/entropy/server/interfaces/main.py:4184 -#: ../../libraries/entropy/server/interfaces/main.py:4187 -#: ../../server/server_activator.py:514 ../../server/server_activator.py:518 +#: ../../libraries/entropy/server/interfaces/main.py:4202 +#: ../../libraries/entropy/server/interfaces/main.py:4205 +#: ../../server/eit/commands/lock.py:102 ../../server/eit/commands/lock.py:117 msgid "Unlocked" msgstr "Розблоковано" -#: ../../libraries/entropy/server/interfaces/main.py:4186 -#: ../../libraries/entropy/server/interfaces/main.py:4189 -#: ../../server/server_activator.py:512 ../../server/server_activator.py:516 +#: ../../libraries/entropy/server/interfaces/main.py:4204 +#: ../../libraries/entropy/server/interfaces/main.py:4207 +#: ../../server/eit/commands/lock.py:99 ../../server/eit/commands/lock.py:114 msgid "Locked" msgstr "Заблоковано" -#: ../../libraries/entropy/server/interfaces/main.py:4206 +#: ../../libraries/entropy/server/interfaces/main.py:4224 msgid "cannot lock mirror" msgstr "неможливо заблокувати дзеркало" -#: ../../libraries/entropy/server/interfaces/main.py:4414 +#: ../../libraries/entropy/server/interfaces/main.py:4438 #, fuzzy msgid "Repository is corrupted!" msgstr "Каталог інформації репозиторіїв зіпсований" -#: ../../libraries/entropy/server/interfaces/main.py:4428 +#: ../../libraries/entropy/server/interfaces/main.py:4452 #, fuzzy msgid "indexing repository" msgstr "Пропускаю репозиторій" -#: ../../libraries/entropy/server/interfaces/main.py:4464 +#: ../../libraries/entropy/server/interfaces/main.py:4488 #, fuzzy msgid "Initializing an empty repository" msgstr "Ініціювання порожньої бази даних" -#: ../../libraries/entropy/server/interfaces/main.py:4477 +#: ../../libraries/entropy/server/interfaces/main.py:4501 #, fuzzy msgid "Entropy repository file" msgstr "Центр керування репозиторіями Entropy" -#: ../../libraries/entropy/server/interfaces/main.py:4479 +#: ../../libraries/entropy/server/interfaces/main.py:4503 msgid "successfully initialized" msgstr "вдало ініціалізований" -#: ../../libraries/entropy/server/interfaces/main.py:4561 -#: ../../libraries/entropy/server/interfaces/main.py:5310 +#: ../../libraries/entropy/server/interfaces/main.py:4585 +#: ../../libraries/entropy/server/interfaces/main.py:5334 msgid "adding package" msgstr "додавання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:4695 +#: ../../libraries/entropy/server/interfaces/main.py:4719 msgid "added package" msgstr "додано пакунок" -#: ../../libraries/entropy/server/interfaces/main.py:4697 +#: ../../libraries/entropy/server/interfaces/main.py:4721 msgid "rev" msgstr "версія" -#: ../../libraries/entropy/server/interfaces/main.py:4711 +#: ../../libraries/entropy/server/interfaces/main.py:4735 msgid "manual dependencies for" msgstr "ручні залежності для" -#: ../../libraries/entropy/server/interfaces/main.py:4792 +#: ../../libraries/entropy/server/interfaces/main.py:4816 #, fuzzy msgid "these are the missing dependencies" msgstr "Є незнайдені залежності" -#: ../../libraries/entropy/server/interfaces/main.py:4948 +#: ../../libraries/entropy/server/interfaces/main.py:4972 #, fuzzy msgid "no missing dependencies !" msgstr "Відсутних залежностей не виявлено." -#: ../../libraries/entropy/server/interfaces/main.py:4963 +#: ../../libraries/entropy/server/interfaces/main.py:4987 +#: ../../server/eit/commands/notice.py:176 #, fuzzy msgid "Do you agree?" msgstr "Ви впевнені?" -#: ../../libraries/entropy/server/interfaces/main.py:4965 -#: ../../libraries/entropy/server/interfaces/main.py:4971 -#: ../../libraries/entropy/output.py:740 ../../libraries/entropy/output.py:985 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../libraries/entropy/server/interfaces/main.py:4995 +#: ../../libraries/entropy/output.py:742 ../../libraries/entropy/output.py:987 #: ../../client/text_ugc.py:308 ../../client/text_ugc.py:542 #: ../../client/text_ugc.py:641 ../../client/text_ugc.py:663 #: ../../client/text_rescue.py:485 ../../client/text_rescue.py:489 #: ../../client/text_rescue.py:516 ../../client/text_ui.py:486 -#: ../../client/text_ui.py:513 ../../server/server_activator.py:399 -#: ../../server/server_reagent.py:940 ../../server/server_reagent.py:941 -#: ../../server/server_reagent.py:965 ../../server/server_reagent.py:978 -#: ../../server/server_reagent.py:979 ../../server/server_reagent.py:994 -#: ../../server/eit/commands/commit.py:193 -#: ../../server/eit/commands/commit.py:195 -#: ../../server/eit/commands/commit.py:229 -#: ../../server/eit/commands/commit.py:246 -#: ../../server/eit/commands/commit.py:248 -#: ../../server/eit/commands/commit.py:267 +#: ../../client/text_ui.py:513 ../../server/eit/commands/notice.py:178 +#: ../../server/eit/commands/notice.py:184 +#: ../../server/eit/commands/notice.py:249 +#: ../../server/eit/commands/commit.py:177 +#: ../../server/eit/commands/commit.py:179 +#: ../../server/eit/commands/commit.py:217 +#: ../../server/eit/commands/commit.py:234 +#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:257 #: ../../sulfur/src/sulfur/dialogs.py:1214 #: ../../sulfur/src/sulfur/dialogs.py:2082 #: ../../sulfur/src/sulfur/events.py:304 ../../sulfur/src/sulfur/events.py:743 @@ -1739,149 +1750,150 @@ msgstr "Ви впевнені?" msgid "Yes" msgstr "Tak" -#: ../../libraries/entropy/server/interfaces/main.py:4965 +#: ../../libraries/entropy/server/interfaces/main.py:4989 +#: ../../server/eit/commands/notice.py:178 msgid "Repeat" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5085 +#: ../../libraries/entropy/server/interfaces/main.py:5109 msgid "metadata QA hook" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5087 +#: ../../libraries/entropy/server/interfaces/main.py:5111 msgid "not owned by uid and gid = 0" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5100 +#: ../../libraries/entropy/server/interfaces/main.py:5124 #, fuzzy msgid "using metadata QA hook" msgstr "Визначається мета-інформація" -#: ../../libraries/entropy/server/interfaces/main.py:5127 +#: ../../libraries/entropy/server/interfaces/main.py:5151 msgid "metadata QA check for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5176 +#: ../../libraries/entropy/server/interfaces/main.py:5200 msgid "cannot execute metadata QA hook for" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5202 +#: ../../libraries/entropy/server/interfaces/main.py:5226 msgid "attention, QA hook returned a warning" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5224 +#: ../../libraries/entropy/server/interfaces/main.py:5248 msgid "attention, QA hook returned an error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5241 +#: ../../libraries/entropy/server/interfaces/main.py:5265 #, fuzzy msgid "metadata QA check complete" msgstr "Блокування баз даних завершено" -#: ../../libraries/entropy/server/interfaces/main.py:5324 +#: ../../libraries/entropy/server/interfaces/main.py:5348 msgid "injected package, no separate debug package" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5342 +#: ../../libraries/entropy/server/interfaces/main.py:5366 msgid "Exception caught, closing tasks" msgstr "Виявлено виняток, закриваємо завдання" -#: ../../libraries/entropy/server/interfaces/main.py:5434 +#: ../../libraries/entropy/server/interfaces/main.py:5458 msgid "server-side repository" msgstr "репозиторій сервера" -#: ../../libraries/entropy/server/interfaces/main.py:5436 +#: ../../libraries/entropy/server/interfaces/main.py:5461 msgid "community repository" msgstr "репозиторій співтовариства" #. ..on repository: -#: ../../libraries/entropy/server/interfaces/main.py:5438 +#: ../../libraries/entropy/server/interfaces/main.py:5463 msgid "Entropy Server Interface Instance on repository" msgstr "Сесія Entropy Server Interface в репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:5449 +#: ../../libraries/entropy/server/interfaces/main.py:5474 msgid "current branch" msgstr "поточна гілка" -#: ../../libraries/entropy/server/interfaces/main.py:5451 -#: ../../server/server_reagent.py:241 +#: ../../libraries/entropy/server/interfaces/main.py:5476 +#: ../../server/eit/commands/deps.py:89 msgid "type" msgstr "тип" -#: ../../libraries/entropy/server/interfaces/main.py:5460 +#: ../../libraries/entropy/server/interfaces/main.py:5485 msgid "Currently configured repositories" msgstr "Вірно налаштовані репозиторії" -#: ../../libraries/entropy/server/interfaces/main.py:5496 +#: ../../libraries/entropy/server/interfaces/main.py:5521 #, fuzzy msgid "GPG key expired" msgstr "протермінований" -#: ../../libraries/entropy/server/interfaces/main.py:5498 +#: ../../libraries/entropy/server/interfaces/main.py:5523 #, fuzzy msgid "please frigging fix" msgstr "будь-ласка, виправте (пофіксіть)" -#: ../../libraries/entropy/server/interfaces/main.py:5509 +#: ../../libraries/entropy/server/interfaces/main.py:5534 msgid "GPG got unexpected error" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5511 +#: ../../libraries/entropy/server/interfaces/main.py:5536 msgid "skipping" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5528 -#: ../../libraries/entropy/server/interfaces/main.py:5543 +#: ../../libraries/entropy/server/interfaces/main.py:5553 +#: ../../libraries/entropy/server/interfaces/main.py:5568 msgid "config files" msgstr "файли налаштуваннь" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5529 +#: ../../libraries/entropy/server/interfaces/main.py:5554 msgid "checking system" msgstr "перевірка системи" #. something short please -#: ../../libraries/entropy/server/interfaces/main.py:5544 +#: ../../libraries/entropy/server/interfaces/main.py:5569 msgid "there are configuration files not updated yet" msgstr "є ще не оновлені файли налаштуваннь" -#: ../../libraries/entropy/server/interfaces/main.py:5834 +#: ../../libraries/entropy/server/interfaces/main.py:5859 msgid "found available dep_rewrites for this package" msgstr "" #. this means that user is asking to add dep_pattern #. as a dependency to package -#: ../../libraries/entropy/server/interfaces/main.py:5846 +#: ../../libraries/entropy/server/interfaces/main.py:5871 #, fuzzy msgid "added" msgstr "До додавання" -#: ../../libraries/entropy/server/interfaces/main.py:5940 +#: ../../libraries/entropy/server/interfaces/main.py:5965 msgid "replaced" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:5962 -#: ../../libraries/entropy/server/interfaces/main.py:5976 +#: ../../libraries/entropy/server/interfaces/main.py:5987 +#: ../../libraries/entropy/server/interfaces/main.py:6001 #, fuzzy msgid "No dependency rewrite made for" msgstr "робить суворішими правила щодо залежностей" -#: ../../libraries/entropy/server/interfaces/main.py:6048 -#: ../../libraries/entropy/server/interfaces/main.py:6068 -#: ../../libraries/entropy/server/interfaces/main.py:6080 +#: ../../libraries/entropy/server/interfaces/main.py:6073 +#: ../../libraries/entropy/server/interfaces/main.py:6093 +#: ../../libraries/entropy/server/interfaces/main.py:6105 msgid "sets" msgstr "" -#: ../../libraries/entropy/server/interfaces/main.py:6049 +#: ../../libraries/entropy/server/interfaces/main.py:6074 #, fuzzy msgid "updating package sets" msgstr "оновлення пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:6069 +#: ../../libraries/entropy/server/interfaces/main.py:6094 #, fuzzy msgid "adding package set" msgstr "додавання пакунку" -#: ../../libraries/entropy/server/interfaces/main.py:6081 +#: ../../libraries/entropy/server/interfaces/main.py:6106 #, fuzzy msgid "removing package set" msgstr "видалення пакунку" @@ -1964,8 +1976,7 @@ msgstr "Оновлення системної бази даних, викори #: ../../libraries/entropy/client/interfaces/cache.py:105 #: ../../libraries/entropy/client/interfaces/methods.py:93 #: ../../libraries/entropy/client/interfaces/methods.py:118 -#: ../../client/text_ui.py:491 ../../server/server_reagent.py:93 -#: ../../server/server_reagent.py:110 ../../sulfur/src/sulfur/views.py:3081 +#: ../../client/text_ui.py:491 ../../sulfur/src/sulfur/views.py:3076 #: ../../sulfur/src/sulfur/__init__.py:1124 msgid "Repository" msgstr "Репозиторій" @@ -2359,7 +2370,7 @@ msgstr "Мульти-завантаження" #: ../../libraries/entropy/client/interfaces/package.py:3479 #: ../../libraries/entropy/client/interfaces/package.py:3498 #: ../../client/text_query.py:782 ../../client/text_ui.py:1129 -#: ../../server/server_reagent.py:554 +#: ../../server/eit/commands/branch.py:117 msgid "packages" msgstr "пакунки" @@ -2417,16 +2428,8 @@ msgstr "Налаштування" #: ../../libraries/entropy/client/interfaces/package.py:3646 #: ../../libraries/entropy/security.py:1037 ../../client/text_security.py:85 #: ../../client/text_smart.py:68 ../../client/text_rescue.py:84 -#: ../../client/equo.py:614 ../../client/text_ui.py:152 -#: ../../server/reagent.py:240 ../../server/reagent.py:258 -#: ../../server/reagent.py:278 ../../server/reagent.py:296 -#: ../../server/reagent.py:326 ../../server/server_activator.py:45 -#: ../../server/server_activator.py:68 ../../server/server_activator.py:197 -#: ../../server/server_activator.py:256 ../../server/server_activator.py:429 -#: ../../server/server_reagent.py:41 ../../server/server_reagent.py:629 -#: ../../server/server_reagent.py:809 ../../server/server_reagent.py:1087 -#: ../../server/server_reagent.py:1195 ../../server/eit/commands/status.py:71 -#: ../../server/eit/commands/commit.py:92 ../../services/kernel-switcher:120 +#: ../../client/equo.py:365 ../../client/text_ui.py:152 +#: ../../server/eit/commands/command.py:75 ../../services/kernel-switcher:120 #: ../../services/kernel-switcher:197 #, fuzzy msgid "Another Entropy is currently running." @@ -2793,7 +2796,7 @@ msgstr "Репозиторії вдало оновлено" #: ../../libraries/entropy/client/interfaces/methods.py:1074 #: ../../libraries/entropy/client/interfaces/methods.py:1132 -#: ../../libraries/entropy/const.py:609 +#: ../../libraries/entropy/const.py:601 msgid "All fine" msgstr "Все чудово" @@ -3087,79 +3090,79 @@ msgstr "перевірка списків закінчилась невдаче msgid "installing" msgstr "встановлюю" -#: ../../libraries/entropy/const.py:587 +#: ../../libraries/entropy/const.py:579 #, fuzzy msgid "Runtime dependency" msgstr "Увімкнення тесту залежностей" -#: ../../libraries/entropy/const.py:588 +#: ../../libraries/entropy/const.py:580 #, fuzzy msgid "Post dependency" msgstr "залежність" -#: ../../libraries/entropy/const.py:589 +#: ../../libraries/entropy/const.py:581 msgid "Manually added (by staff) dependency" msgstr "" -#: ../../libraries/entropy/const.py:590 +#: ../../libraries/entropy/const.py:582 #, fuzzy msgid "Build dependency" msgstr "залежність" -#: ../../libraries/entropy/const.py:610 +#: ../../libraries/entropy/const.py:602 msgid "Corrupted Client Repository. Please restore a backup." msgstr "" "Зіпсований репозиторій користувача. Будь-ласка, відновіть з резервної копії." -#: ../../libraries/entropy/const.py:640 +#: ../../libraries/entropy/const.py:632 msgid "reason not available" msgstr "причина невідома" -#: ../../libraries/entropy/const.py:641 +#: ../../libraries/entropy/const.py:633 msgid "user package.mask" msgstr "package.mask користувача" -#: ../../libraries/entropy/const.py:642 +#: ../../libraries/entropy/const.py:634 msgid "system keywords" msgstr "системні ключові слова" -#: ../../libraries/entropy/const.py:643 +#: ../../libraries/entropy/const.py:635 msgid "user package.unmask" msgstr "package.unmask користувача" -#: ../../libraries/entropy/const.py:644 +#: ../../libraries/entropy/const.py:636 msgid "user repo package.keywords (all packages)" msgstr "репозитарії користувача package.keywords (усі пакунки)" -#: ../../libraries/entropy/const.py:645 +#: ../../libraries/entropy/const.py:637 msgid "user repo package.keywords" msgstr "репозитарій користувача package.keywords" -#: ../../libraries/entropy/const.py:646 +#: ../../libraries/entropy/const.py:638 msgid "user package.keywords" msgstr "package.keywords користувача" -#: ../../libraries/entropy/const.py:647 +#: ../../libraries/entropy/const.py:639 msgid "completely masked (by keyword?)" msgstr "повністю замасковано (за ключовим словом?)" -#: ../../libraries/entropy/const.py:648 +#: ../../libraries/entropy/const.py:640 msgid "repository general packages.db.mask" msgstr "загальний репозиторій packages.db.mask" -#: ../../libraries/entropy/const.py:649 +#: ../../libraries/entropy/const.py:641 msgid "repository general packages.db.keywords" msgstr "репозиторій гілки packages.db.mask" -#: ../../libraries/entropy/const.py:650 +#: ../../libraries/entropy/const.py:642 msgid "user license.mask" msgstr "користувацька license.mask" -#: ../../libraries/entropy/const.py:651 +#: ../../libraries/entropy/const.py:643 msgid "user live unmask" msgstr "поточне демаскування користувача" -#: ../../libraries/entropy/const.py:652 +#: ../../libraries/entropy/const.py:644 msgid "user live mask" msgstr "поточна маска користувача" @@ -3168,90 +3171,90 @@ msgstr "поточна маска користувача" msgid "Entropy needs your attention" msgstr "Entropy вимагає Вашої уваги" -#: ../../libraries/entropy/output.py:755 +#: ../../libraries/entropy/output.py:757 msgid "Entropy got a question for you" msgstr "Entropy має до Вас запитання" -#: ../../libraries/entropy/output.py:769 +#: ../../libraries/entropy/output.py:771 msgid "Interrupted" msgstr "Скасовано" -#: ../../libraries/entropy/output.py:831 ../../libraries/entropy/output.py:835 +#: ../../libraries/entropy/output.py:833 ../../libraries/entropy/output.py:837 msgid "Selected number" msgstr "Обраний номер" -#: ../../libraries/entropy/output.py:852 ../../client/text_ui.py:1614 +#: ../../libraries/entropy/output.py:854 ../../client/text_ui.py:1614 msgid "Please select an option" msgstr "Будь-ласка, оберіть опцію" -#: ../../libraries/entropy/output.py:854 +#: ../../libraries/entropy/output.py:856 msgid "Discard all" msgstr "Скасувати все" -#: ../../libraries/entropy/output.py:855 +#: ../../libraries/entropy/output.py:857 msgid "Confirm" msgstr "Підтвердити" -#: ../../libraries/entropy/output.py:856 +#: ../../libraries/entropy/output.py:858 msgid "Add item" msgstr "Додати предмет" -#: ../../libraries/entropy/output.py:857 +#: ../../libraries/entropy/output.py:859 #, fuzzy msgid "Edit item" msgstr "Додати предмет" -#: ../../libraries/entropy/output.py:858 +#: ../../libraries/entropy/output.py:860 msgid "Remove item" msgstr "Видалити предмет" -#: ../../libraries/entropy/output.py:859 +#: ../../libraries/entropy/output.py:861 msgid "Show current list" msgstr "Показати поточний перелік" #. wait user interaction -#: ../../libraries/entropy/output.py:863 +#: ../../libraries/entropy/output.py:865 #: ../../client/text_configuration.py:298 #: ../../client/text_configuration.py:314 msgid "Your choice (type a number and press enter):" msgstr "Ваш вибір (введіть номер і натисніть Enter)" -#: ../../libraries/entropy/output.py:895 +#: ../../libraries/entropy/output.py:897 #: ../../client/text_configuration.py:197 msgid "You don't have typed a number." msgstr "Ви не ввели номер." -#: ../../libraries/entropy/output.py:898 +#: ../../libraries/entropy/output.py:900 msgid "Invalid action." msgstr "Хибна дія." -#: ../../libraries/entropy/output.py:908 +#: ../../libraries/entropy/output.py:910 #, fuzzy msgid "String to add (-1 to go back):" msgstr "Рядок для додавання:" -#: ../../libraries/entropy/output.py:918 +#: ../../libraries/entropy/output.py:920 msgid "Invalid string." msgstr "Помилковий рядок." -#: ../../libraries/entropy/output.py:926 +#: ../../libraries/entropy/output.py:928 #, fuzzy msgid "Element number to edit (-1 to go back):" msgstr "Номер елемента до видалення:" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "old" msgstr "" -#: ../../libraries/entropy/output.py:937 +#: ../../libraries/entropy/output.py:939 msgid "new value:" msgstr "" -#: ../../libraries/entropy/output.py:945 ../../libraries/entropy/output.py:963 +#: ../../libraries/entropy/output.py:947 ../../libraries/entropy/output.py:965 msgid "Invalid element." msgstr "Хибний елемент." -#: ../../libraries/entropy/output.py:954 +#: ../../libraries/entropy/output.py:956 #, fuzzy msgid "Element number to remove (-1 to go back):" msgstr "Номер елемента до видалення:" @@ -3427,16 +3430,18 @@ msgstr "Ідентифікатор GLSA" #: ../../client/text_security.py:131 ../../client/text_repositories.py:491 #: ../../client/text_repositories.py:523 ../../client/text_repositories.py:578 #: ../../client/text_ugc.py:515 ../../client/text_ugc.py:735 -#: ../../server/server_activator.py:275 ../../server/server_activator.py:307 -#: ../../server/server_activator.py:343 ../../sulfur/src/sulfur/dialogs.py:372 +#: ../../server/eit/commands/notice.py:156 +#: ../../server/eit/commands/notice.py:309 +#: ../../server/eit/commands/notice.py:344 +#: ../../sulfur/src/sulfur/dialogs.py:372 #: ../../sulfur/src/sulfur/dialogs.py:691 #: ../../sulfur/src/sulfur/sulfur.glade.h:253 msgid "Title" msgstr "Заголовок" #: ../../client/text_security.py:136 ../../client/text_query.py:1705 -#: ../../client/text_ugc.py:520 ../../server/server_key.py:374 -#: ../../sulfur/src/sulfur/views.py:2926 ../../sulfur/src/sulfur/views.py:3156 +#: ../../client/text_ugc.py:520 ../../server/eit/commands/key.py:324 +#: ../../sulfur/src/sulfur/views.py:2921 ../../sulfur/src/sulfur/views.py:3151 #: ../../sulfur/src/sulfur/dialogs.py:674 #: ../../sulfur/src/sulfur/sulfur.glade.h:62 msgid "Description" @@ -3565,7 +3570,6 @@ msgstr "Ви не" #: ../../client/text_smart.py:43 ../../client/text_repositories.py:51 #: ../../client/text_ugc.py:38 ../../client/text_ui.py:133 -#: ../../server/reagent.py:342 ../../server/activator.py:182 msgid "Wrong parameters" msgstr "Хибні параметри" @@ -3615,7 +3619,7 @@ msgid "Error while creating package for" msgstr "Помилка при створенні пакунку для" #: ../../client/text_smart.py:155 ../../client/text_smart.py:329 -#: ../../client/text_smart.py:480 ../../client/equo.py:893 +#: ../../client/text_smart.py:480 ../../client/equo.py:643 msgid "Cannot continue" msgstr "Неможливо продовжувати" @@ -3742,7 +3746,7 @@ msgstr "репозиторій недоступний" #: ../../client/text_query.py:1283 ../../client/text_query.py:1325 #: ../../client/text_query.py:1366 ../../client/text_query.py:1405 #: ../../client/text_query.py:1435 ../../client/text_query.py:1479 -#: ../../client/text_query.py:1535 ../../server/server_query.py:176 +#: ../../client/text_query.py:1535 msgid "Keyword" msgstr "Ключове слово" @@ -3754,7 +3758,7 @@ msgstr "Ключове слово" #: ../../client/text_query.py:1284 ../../client/text_query.py:1326 #: ../../client/text_query.py:1367 ../../client/text_query.py:1406 #: ../../client/text_query.py:1436 ../../client/text_query.py:1480 -#: ../../client/text_query.py:1536 ../../server/server_query.py:177 +#: ../../client/text_query.py:1536 msgid "Found" msgstr "Знайдено" @@ -3765,7 +3769,6 @@ msgstr "Знайдено" #: ../../client/text_query.py:1327 ../../client/text_query.py:1368 #: ../../client/text_query.py:1407 ../../client/text_query.py:1437 #: ../../client/text_query.py:1481 ../../client/text_query.py:1537 -#: ../../server/server_query.py:178 msgid "entries" msgstr "записів" @@ -3798,8 +3801,8 @@ msgid "packages already pulled in as dependency in upper levels (circularity)" msgstr "" #: ../../client/text_query.py:342 ../../client/text_query.py:1580 -#: ../../client/text_query.py:1581 ../../server/server_key.py:367 -#: ../../server/server_key.py:371 ../../server/server_reagent.py:227 +#: ../../client/text_query.py:1581 ../../server/eit/commands/deps.py:68 +#: ../../server/eit/commands/key.py:317 ../../server/eit/commands/key.py:321 #: ../../sulfur/src/sulfur/dialogs.py:495 #: ../../sulfur/src/sulfur/dialogs.py:664 #: ../../sulfur/src/sulfur/dialogs.py:669 @@ -3947,8 +3950,9 @@ msgstr "Пошук переміщених" #: ../../client/text_query.py:1004 ../../client/text_ui.py:1041 #: ../../client/text_ui.py:1186 ../../client/text_ui.py:1282 #: ../../client/text_ui.py:1783 ../../client/text_ui.py:1875 -#: ../../client/text_ui.py:1973 ../../server/server_reagent.py:456 -#: ../../server/server_reagent.py:506 +#: ../../client/text_ui.py:1973 ../../server/eit/commands/remove.py:84 +#: ../../server/eit/commands/deps.py:126 +#: ../../server/eit/commands/branch.py:110 msgid "No packages found" msgstr "Пакунків не знайдено" @@ -4009,7 +4013,7 @@ msgstr "Пошук слота" msgid "Package Set Search" msgstr "Пошук набору пакунків" -#: ../../client/text_query.py:1380 ../../server/server_query.py:162 +#: ../../client/text_query.py:1380 msgid "Tag Search" msgstr "Пошук тега" @@ -4088,7 +4092,7 @@ msgstr "Завантаження" msgid "Checksum" msgstr "Контрольна сума" -#: ../../client/text_query.py:1674 ../../server/server_reagent.py:300 +#: ../../client/text_query.py:1674 ../../server/eit/commands/deps.py:181 #: ../../sulfur/src/sulfur/dialogs.py:1445 msgid "Dependencies" msgstr "Залежності" @@ -4208,7 +4212,7 @@ msgid "repository already enabled" msgstr "вже увімкнено" #: ../../client/text_repositories.py:197 ../../client/text_repositories.py:214 -#: ../../client/text_repositories.py:317 ../../server/server_key.py:49 +#: ../../client/text_repositories.py:317 ../../server/eit/commands/cp.py:89 #, fuzzy msgid "repository not available" msgstr "репозиторій недоступний" @@ -4286,7 +4290,7 @@ msgstr "активно" msgid "never synced" msgstr "ніколи не був синхронізований" -#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2903 +#: ../../client/text_repositories.py:351 ../../sulfur/src/sulfur/views.py:2898 #: ../../sulfur/src/sulfur/dialogs.py:353 msgid "Status" msgstr "Статус" @@ -4336,24 +4340,25 @@ msgstr "Жодного репозиторію не зазначено в" msgid "Unhandled exception" msgstr "Непередбачений виняток" -#: ../../client/text_repositories.py:474 ../../server/server_activator.py:365 -#: ../../server/server_activator.py:385 +#: ../../client/text_repositories.py:474 +#: ../../server/eit/commands/notice.py:230 +#: ../../server/eit/commands/notice.py:281 msgid "Notice board not available" msgstr "Дошка повідомлень недоступна" #: ../../client/text_repositories.py:497 ../../client/text_ugc.py:744 -#: ../../server/server_activator.py:281 #: ../../sulfur/src/sulfur/dialogs.py:1506 #: ../../sulfur/src/sulfur/sulfur.glade.h:47 msgid "Content" msgstr "Вміст" -#: ../../client/text_repositories.py:502 ../../server/server_activator.py:286 +#: ../../client/text_repositories.py:502 #: ../../sulfur/src/sulfur/sulfur.glade.h:121 msgid "Link" msgstr "Посилання" -#: ../../client/text_repositories.py:510 ../../server/server_activator.py:294 +#: ../../client/text_repositories.py:510 +#: ../../server/eit/commands/notice.py:327 msgid "Press Enter to continue" msgstr "Натисніть Enter, щоб продовжити" @@ -4363,7 +4368,8 @@ msgstr "Натисніть Enter, щоб продовжити" msgid "Exit" msgstr "Вихід" -#: ../../client/text_repositories.py:537 ../../server/server_activator.py:321 +#: ../../client/text_repositories.py:537 +#: ../../server/eit/commands/notice.py:359 msgid "Choose one by typing its identifier" msgstr "оберіть один, набравши його назву" @@ -4373,7 +4379,7 @@ msgid "Notice board" msgstr "Дошка повідомлень" #: ../../client/text_configuration.py:42 ../../client/text_rescue.py:72 -#: ../../client/equo.py:601 +#: ../../client/equo.py:352 msgid "You are not root" msgstr "Ви не суперкористувач root" @@ -4395,8 +4401,7 @@ msgid "Type a number." msgstr "Введіть число." #: ../../client/text_configuration.py:112 -#: ../../client/text_configuration.py:139 ../../server/server_reagent.py:97 -#: ../../server/server_reagent.py:114 +#: ../../client/text_configuration.py:139 msgid "Configuration file" msgstr "Файл налаштування" @@ -4517,7 +4522,7 @@ msgid "Unique files that would be automerged" msgstr "Особливі файли, що повинні бути автоматично об'єднані" #: ../../client/text_ugc.py:73 ../../client/text_ugc.py:164 -#: ../../client/text_ugc.py:214 +#: ../../client/text_ugc.py:214 ../../server/eit/commands/test.py:150 msgid "Invalid repository" msgstr "Хибний репозиторій" @@ -4535,7 +4540,7 @@ msgstr "Вже увійшли в систему(залогінились) як" msgid "Please logout first" msgstr "Будь-ласка, спочатку вийдіть з системи." -#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2016 +#: ../../client/text_ugc.py:106 ../../sulfur/src/sulfur/views.py:2011 #: ../../sulfur/src/sulfur/dialogs.py:1318 #: ../../sulfur/src/sulfur/dialogs.py:2016 #: ../../sulfur/src/sulfur/events.py:834 @@ -4543,7 +4548,7 @@ msgstr "Будь-ласка, спочатку вийдіть з системи." msgid "Username" msgstr "Ім'я користувача" -#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2017 +#: ../../client/text_ugc.py:107 ../../sulfur/src/sulfur/views.py:2012 #: ../../sulfur/src/sulfur/dialogs.py:1319 #: ../../sulfur/src/sulfur/dialogs.py:2017 #: ../../sulfur/src/sulfur/events.py:835 @@ -4551,7 +4556,7 @@ msgstr "Ім'я користувача" msgid "Password" msgstr "Пароль" -#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2021 +#: ../../client/text_ugc.py:111 ../../sulfur/src/sulfur/views.py:2016 #: ../../sulfur/src/sulfur/dialogs.py:1323 #: ../../sulfur/src/sulfur/dialogs.py:2021 #: ../../sulfur/src/sulfur/events.py:839 @@ -4563,7 +4568,7 @@ msgstr "Будь ласка, залогіньтесь знову" msgid "Login aborted. Not logged in." msgstr "Помилка входу в систему. Ви не увійшли в систему." -#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2036 +#: ../../client/text_ugc.py:132 ../../sulfur/src/sulfur/views.py:2031 #: ../../sulfur/src/sulfur/dialogs.py:1338 #: ../../sulfur/src/sulfur/dialogs.py:2036 #: ../../sulfur/src/sulfur/events.py:855 @@ -4785,7 +4790,7 @@ msgid "Installed packages database not available" msgstr "База даних пакунків недоступна" #: ../../client/text_rescue.py:101 ../../client/text_rescue.py:111 -#: ../../client/equo.py:455 ../../client/text_ui.py:219 +#: ../../client/equo.py:339 ../../client/text_ui.py:219 msgid "is deprecated, please use" msgstr "" @@ -4801,15 +4806,15 @@ msgstr "Очищено 'під нуль' базу даних системи" msgid "No System Databases found" msgstr "Не знайдено баз даних системи" -#: ../../client/text_rescue.py:157 ../../server/server_reagent.py:579 +#: ../../client/text_rescue.py:157 msgid "No backed up databases found" msgstr "Не знайдено резервних копій баз даних" -#: ../../client/text_rescue.py:172 ../../server/server_reagent.py:594 +#: ../../client/text_rescue.py:172 msgid "Select the database you want to restore" msgstr "оберіть базу даних, котру бажаєте відновити" -#: ../../client/text_rescue.py:178 ../../server/server_reagent.py:600 +#: ../../client/text_rescue.py:178 msgid "Entropy installed packages database restore tool" msgstr "Інструмент відновлення бази даних пакунків Entropy" @@ -5106,28 +5111,23 @@ msgstr "Гаразд, я здаюся. Ти невиправний." msgid "Go to hell." msgstr "Та бодай тебе..." -#: ../../client/equo.py:63 ../../server/reagent.py:33 -#: ../../server/activator.py:37 +#: ../../client/equo.py:63 msgid "Basic Options" msgstr "Основні параметри" -#: ../../client/equo.py:65 ../../server/reagent.py:35 -#: ../../server/activator.py:39 +#: ../../client/equo.py:65 msgid "this output" msgstr "цю інструкцію" -#: ../../client/equo.py:66 ../../server/reagent.py:36 -#: ../../server/activator.py:40 +#: ../../client/equo.py:66 msgid "print version" msgstr "відображає версію" -#: ../../client/equo.py:67 ../../server/reagent.py:37 -#: ../../server/activator.py:41 +#: ../../client/equo.py:67 msgid "disable colorized output" msgstr "деактивує кольорове відображення" -#: ../../client/equo.py:68 ../../server/reagent.py:38 -#: ../../server/activator.py:42 +#: ../../client/equo.py:68 #, fuzzy msgid "force colorized output" msgstr "деактивує кольорове відображення" @@ -5137,8 +5137,7 @@ msgstr "деактивує кольорове відображення" msgid "print a bash completion script to stdout" msgstr "записати пошкоджені файли в stdout" -#: ../../client/equo.py:71 ../../server/reagent.py:40 -#: ../../server/activator.py:44 +#: ../../client/equo.py:71 msgid "Application Options" msgstr "Опції програми" @@ -5195,7 +5194,7 @@ msgstr "переглядач дошки повідомлень репозито msgid "show respositories status" msgstr "відобразити статус репозиторіїв" -#: ../../client/equo.py:87 +#: ../../client/equo.py:87 ../../server/eit/commands/search.py:105 msgid "search packages in repositories" msgstr "знайти пакунки в репозиторіях" @@ -5235,8 +5234,7 @@ msgstr "оновити систему найновішими наявними п #: ../../client/equo.py:98 ../../client/equo.py:123 ../../client/equo.py:129 #: ../../client/equo.py:146 ../../client/equo.py:153 ../../client/equo.py:161 #: ../../client/equo.py:171 ../../client/equo.py:174 ../../client/equo.py:178 -#: ../../client/equo.py:183 ../../client/equo.py:194 ../../client/equo.py:279 -#: ../../server/activator.py:56 +#: ../../client/equo.py:183 ../../client/equo.py:194 msgid "ask before making any changes" msgstr "питати перед будь-якими змінами" @@ -5244,8 +5242,7 @@ msgstr "питати перед будь-якими змінами" msgid "just download packages" msgstr "просто завантажити пакунки" -#: ../../client/equo.py:100 ../../client/equo.py:280 -#: ../../server/activator.py:57 +#: ../../client/equo.py:100 msgid "only show what would be done" msgstr "показувати лише те, що буде зроблено" @@ -5430,7 +5427,7 @@ msgstr "видалити один або більше пакунків" msgid "configure one or more installed packages" msgstr "налаштувати один або більше пакунків" -#: ../../client/equo.py:181 ../../server/reagent.py:119 +#: ../../client/equo.py:181 msgid "look for unsatisfied dependencies" msgstr "шукати незадоволені залежності" @@ -5446,7 +5443,7 @@ msgstr "сортувати пакунки за розміром на диску" msgid "look for missing libraries" msgstr "шукати зіпсовані бібліотеки" -#: ../../client/equo.py:191 ../../server/reagent.py:121 +#: ../../client/equo.py:191 msgid "dump results to files" msgstr "записати результати у файли" @@ -5474,7 +5471,7 @@ msgstr "зробити різні запити до репозиторію та msgid "search from what package a file belongs" msgstr "шукати, якому пакунку належить файл" -#: ../../client/equo.py:203 ../../client/equo.py:340 +#: ../../client/equo.py:203 msgid "show packages changelog" msgstr "показати лог змін пакунків" @@ -5482,13 +5479,11 @@ msgstr "показати лог змін пакунків" msgid "search what packages depend on the provided atoms" msgstr "шукати пакунки, що залежать від наданих атомів" -#: ../../client/equo.py:205 ../../client/equo.py:342 -#: ../../server/reagent.py:62 +#: ../../client/equo.py:205 msgid "search packages by description" msgstr "шукати пакунки за описом" -#: ../../client/equo.py:206 ../../client/equo.py:343 -#: ../../server/reagent.py:60 +#: ../../client/equo.py:206 msgid "show files owned by the provided atoms" msgstr "показує файли, що належать даним атомам" @@ -5531,8 +5526,7 @@ msgstr "Встановлені пакунки" msgid "associate given file paths to applications able to read them" msgstr "" -#: ../../client/equo.py:217 ../../client/equo.py:345 -#: ../../server/reagent.py:56 +#: ../../client/equo.py:217 msgid "show runtime libraries needed by the provided atoms" msgstr "відобразити бібліотеки робочого циклу, необхідні для даних атомів" @@ -5548,8 +5542,7 @@ msgstr "показати дерево вилучень для обраних а msgid "show atoms needing the provided libraries" msgstr "відобразити атоми, що потребують даних бібліотек" -#: ../../client/equo.py:221 ../../client/equo.py:347 -#: ../../server/reagent.py:59 +#: ../../client/equo.py:221 msgid "search available package sets" msgstr "пошук наявних наборів пакунків" @@ -5561,27 +5554,24 @@ msgstr "відобразити пакунки, що належать даном msgid "show packages owning the provided tags" msgstr "відобразити пакунки, що належать даним тегам" -#: ../../client/equo.py:224 ../../server/reagent.py:64 +#: ../../client/equo.py:224 msgid "show direct depdendencies tree for provided installable atoms" msgstr "" #: ../../client/equo.py:225 ../../client/equo.py:227 -#: ../../server/reagent.py:65 ../../server/reagent.py:67 msgid "include system packages, build deps and circularity information" msgstr "" -#: ../../client/equo.py:226 ../../server/reagent.py:66 +#: ../../client/equo.py:226 #, fuzzy msgid "show reverse depdendencies tree for provided installed atoms" msgstr "відобразити, які пакунки залежать від даних атомів" -#: ../../client/equo.py:228 ../../client/equo.py:350 ../../client/equo.py:395 -#: ../../server/reagent.py:68 +#: ../../client/equo.py:228 ../../client/equo.py:279 msgid "show more details" msgstr "відобразити більше деталей" -#: ../../client/equo.py:229 ../../client/equo.py:351 ../../client/equo.py:396 -#: ../../server/reagent.py:69 +#: ../../client/equo.py:229 ../../client/equo.py:280 msgid "print results in a scriptable way" msgstr "відобразити результати за допомогою скриптів" @@ -5666,7 +5656,7 @@ msgstr "" "створити базу даних встановлених пакунків з використанням файлів системи" "[остання надія]" -#: ../../client/equo.py:259 ../../client/equo.py:311 +#: ../../client/equo.py:259 #, fuzzy msgid "regenerate SPM UIDs map (SPM <-> Entropy packages)" msgstr "" @@ -5688,355 +5678,22 @@ msgstr "" "пакунківEntropy" #: ../../client/equo.py:264 -msgid "handles community-side features" -msgstr "керує функціями, пов'язаними зі спільнотою" - -#: ../../client/equo.py:266 -msgid "community repositories management functions" -msgstr "функції керуваннярепозиторіями спільноти" - -#: ../../client/equo.py:267 ../../server/reagent.py:44 -msgid "scan the System looking for newly compiled packages" -msgstr "пошук у системі нещодавно створених пакунків" - -#: ../../client/equo.py:268 ../../server/reagent.py:45 -msgid "analyze the Entropy Store directory directly" -msgstr "проаналізувати директорію Entropy Store навпростець" - -#: ../../client/equo.py:269 ../../server/reagent.py:46 -msgid "repackage the specified atoms" -msgstr "перепакувати дані атоми" - -#: ../../client/equo.py:270 ../../client/equo.py:276 -#: ../../server/reagent.py:47 ../../server/activator.py:48 -msgid "do not ask anything except critical things" -msgstr "не запитувати нічого, окрім критичних моментів" - -#: ../../client/equo.py:271 ../../server/reagent.py:48 -msgid "manage only the specified atoms" -msgstr "керувати лише даними атомами" - -#: ../../client/equo.py:272 ../../server/reagent.py:49 -msgid "run in interactive mode (asking things one by one)" -msgstr "виконати в інтерактивному режимі (запитувати усі моменти)" - -#: ../../client/equo.py:273 ../../server/reagent.py:51 -msgid "add binary packages to repository w/o affecting scopes (multipackages)" -msgstr "" -"додати бінарні пакунки в репозиторій, окрім діючих обмежень (для " -"мультипакунків)" - -#: ../../client/equo.py:274 -msgid "community repositories mirrors management functions" -msgstr "функції керування дзеркалами репозиторіїв співтовариства" - -#: ../../client/equo.py:275 ../../server/activator.py:46 -msgid "sync packages, database and also do some tidy" -msgstr "синхронізувати пакунки, базу даних, і взагалі - навести лад" - -#: ../../client/equo.py:277 ../../client/equo.py:281 ../../client/equo.py:284 -#: ../../server/activator.py:49 ../../server/activator.py:58 -#: ../../server/activator.py:63 -msgid "sync all the configured repositories" -msgstr "синхронізувати усі налаштовані репозиторії" - -#: ../../client/equo.py:278 -msgid "sync packages across primary mirrors" -msgstr "синхронізувати пакунки з головними дзеркалами" - -#: ../../client/equo.py:282 ../../server/activator.py:59 -msgid "also verify packages integrity" -msgstr "також справдити цілісність пакунків" - -#: ../../client/equo.py:283 ../../server/activator.py:62 -msgid "sync the current repository database across primary mirrors" -msgstr "синхронізувати поточну базу даних репозиторію з головними дзеркалами" - -#: ../../client/equo.py:285 ../../server/activator.py:67 -msgid "lock the current repository database (server-side)" -msgstr "заблокувати поточну базу даних репозиторію (для сервера)" - -#: ../../client/equo.py:286 ../../server/activator.py:68 -msgid "unlock the current repository database (server-side)" -msgstr "розблокувати поточну базу даних репозиторію (для сервера)" - -#: ../../client/equo.py:287 ../../server/activator.py:69 -msgid "lock the current repository database (client-side)" -msgstr "заблокувати поточну базу даних репозиторію (для клієнта)" - -#: ../../client/equo.py:288 ../../server/activator.py:70 -msgid "unlock the current repository database (client-side)" -msgstr "розблокувати поточну базу даних репозиторію (для клієнта)" - -#: ../../client/equo.py:289 ../../server/activator.py:71 -msgid "show current lock status" -msgstr "відобразити поточний статус блокування" - -#: ../../client/equo.py:290 ../../server/activator.py:52 -msgid "remove binary packages not in repositories and expired" -msgstr "" -"видалити бінарні пакунки, яких немає в репозиторії і термін зберігання " -"якихминув" - -#: ../../client/equo.py:291 ../../server/activator.py:65 -#, fuzzy -msgid "" -"clean unavailable packages from mirrors (similar to tidy, but more nazi)" -msgstr "Підрахунок наявних пакунків для" - -#: ../../client/equo.py:292 ../../server/activator.py:66 -msgid "expiration days [default is: 0, dangerous!]" -msgstr "" - -#: ../../client/equo.py:296 ../../server/reagent.py:71 -msgid "manage a repository" -msgstr "керувати репозиторієм" - -#: ../../client/equo.py:298 -#, fuzzy -msgid "(re)initialize the current repository database" -msgstr "(повторно) обнулити поточну базу даних репозиторію" - -#: ../../client/equo.py:299 -msgid "do not refill database using packages on mirrors" -msgstr "не доповнювати базу даних пакунками з дзеркал" - -#: ../../client/equo.py:300 -#, fuzzy -msgid "(re)create the database for the specified repository" -msgstr "(повторно) створити базу даних для зазначеного репозиторію" - -#: ../../client/equo.py:301 ../../server/reagent.py:73 -msgid "manually force a revision bump for the current repository database" -msgstr "власноруч прискорити перевірку версії поточної бази даних репозиторію" - -#: ../../client/equo.py:302 ../../server/reagent.py:74 -msgid "synchronize the database" -msgstr "синхронізувати базу даних" - -#: ../../client/equo.py:303 ../../server/reagent.py:75 -msgid "flush back old branches packages to current branch" -msgstr "змінити пакунки старих гілок на пакунки нової гілки" - -#: ../../client/equo.py:304 ../../server/reagent.py:76 -msgid "remove the provided atoms from the current repository database" -msgstr "видалити дані атоми з поточної бази даних репозиторію" - -#: ../../client/equo.py:305 ../../server/reagent.py:78 -msgid "remove the provided injected atoms (all if no atom specified)" -msgstr "видалити дані завантажені атоми (всі, якщо не обрано жодногоатома)" - -#: ../../client/equo.py:306 ../../server/reagent.py:79 -msgid "create an empty repository database in the provided path" -msgstr "створити порожню базу даних репозиторію за вказаним шляхом" - -#: ../../client/equo.py:307 -msgid "switch to the specified branch the provided atoms (or world)" -msgstr "перемкнути на вказану гілку дані атоми (або всі)" - -#: ../../client/equo.py:308 -msgid "verify remote integrity of the provided atoms (or world)" -msgstr "віддалено перевірити цілісність даних атомів (або всіх)" - -#: ../../client/equo.py:309 ../../server/reagent.py:82 -msgid "backup current repository database" -msgstr "створити резервну копію поточної бази даних репозиторію" - -#: ../../client/equo.py:310 ../../server/reagent.py:83 -msgid "restore a previously backed-up repository database" -msgstr "відновити попередньо створену резервну копію бази даних репозиторію" - -#: ../../client/equo.py:313 ../../server/reagent.py:84 -msgid "enable the specified repository" -msgstr "увімкнути обраний репозиторій" - -#: ../../client/equo.py:314 ../../server/reagent.py:85 -msgid "disable the specified repository" -msgstr "вимкнути обраний репозиторій" - -#: ../../client/equo.py:315 -msgid "show the current Server Interface status" -msgstr "відобразити поточний статус Серверного Інтерфейсу" - -#: ../../client/equo.py:316 ../../server/reagent.py:86 -#, fuzzy -msgid "check packages in repository for missing dependencies" -msgstr "Встановлені пакунки" - -#: ../../client/equo.py:317 ../../server/reagent.py:87 -#, fuzzy -msgid "handle packages dependencies" -msgstr "власноруч керувати залежностями пакунків" - -#: ../../client/equo.py:318 -msgid "clone a package inside a repository assigning it an arbitrary tag" -msgstr "клонувати пакунок всередині репозиторію, описуючи його довільним тегом" - -#: ../../client/equo.py:319 ../../server/reagent.py:91 -msgid "move packages from a repository to another" -msgstr "перемістити пакунки в інший репозиторій" - -#: ../../client/equo.py:320 ../../client/equo.py:322 -#: ../../server/reagent.py:92 ../../server/reagent.py:94 -msgid "pulls dependencies in" -msgstr "встановити залежності" - -#: ../../client/equo.py:321 ../../server/reagent.py:93 -msgid "copy packages from a repository to another" -msgstr "копіювати пакунки в інший репозиторій" - -#: ../../client/equo.py:323 ../../server/reagent.py:95 -msgid "set the default repository" -msgstr "встановити репозиторій за замовчуванням" - -#: ../../client/equo.py:327 ../../server/reagent.py:97 -msgid "manage repository digital signatures (OpenGPG)" -msgstr "" - -#: ../../client/equo.py:328 ../../server/reagent.py:98 -#, fuzzy -msgid "create keypair for repositories and sign packages" -msgstr "Спробуйте оновити репозиторії і повторіть спробу" - -#: ../../client/equo.py:329 ../../server/reagent.py:99 -msgid "delete keypair (and digital signatures) of repository" -msgstr "" - -#: ../../client/equo.py:330 ../../server/reagent.py:100 -#, fuzzy -msgid "show currently configured keys information for given repositories" -msgstr "Вірно налаштовані репозиторії" - -#: ../../client/equo.py:331 ../../server/reagent.py:101 -msgid "sign (or re-sign) packages in repository using currently set keypair" -msgstr "" - -#: ../../client/equo.py:332 ../../server/reagent.py:102 -#, fuzzy -msgid "import keypair, bind to given repository" -msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" - -#: ../../client/equo.py:333 ../../server/reagent.py:103 -#, fuzzy -msgid "export public key of given repository" -msgstr "Сортувати за репозиторієм" - -#: ../../client/equo.py:334 ../../server/reagent.py:104 -#, fuzzy -msgid "export private key of given repository" -msgstr "Репозиторій призначення" - -#: ../../client/equo.py:338 -msgid "do some searches into community repository databases" -msgstr "пошукати в базі даних репозиторіїв співтовариства" - -#: ../../client/equo.py:339 ../../server/reagent.py:61 -msgid "show from what package the provided files belong" -msgstr "відобразити, якому пакункові належать дані файли" - -#: ../../client/equo.py:341 ../../server/reagent.py:57 -msgid "show what packages depend on the provided atoms" -msgstr "відобразити, які пакунки залежать від даних атомів" - -#: ../../client/equo.py:344 ../../server/reagent.py:63 -msgid "list all the packages in the default repository" -msgstr "показати всі пакунки у репозиторії за замовчуванням" - -#: ../../client/equo.py:346 ../../server/reagent.py:54 -msgid "search packages inside the default repository database" -msgstr "шукати пакунки в базі даних репозиторію за замовчуванням" - -#: ../../client/equo.py:348 ../../server/reagent.py:58 -msgid "show packages owning the specified tags" -msgstr "відобразити пакунки з певними тегами" - -#: ../../client/equo.py:349 -#, fuzzy -msgid "show installed packages owning the specified revisions" -msgstr "відобразити пакунки з певними тегами" - -#: ../../client/equo.py:355 ../../server/reagent.py:106 -msgid "source package manager functions" -msgstr "функції пакункового менеджера джерела" - -#: ../../client/equo.py:356 ../../server/reagent.py:107 -msgid "compilation function" -msgstr "функція компіляції" - -#: ../../client/equo.py:357 ../../server/reagent.py:108 -msgid "compile packages belonging to the provided categories" -msgstr "компілювати пакунки, що стосуються даних категорій" - -#: ../../client/equo.py:358 ../../client/equo.py:361 -#: ../../server/reagent.py:109 ../../server/reagent.py:112 -msgid "just list packages" -msgstr "відобразити лише перелік пакунків" - -#: ../../client/equo.py:359 ../../server/reagent.py:110 -msgid "do not pull old package slots" -msgstr "не заповнювати слоти старих пакунків" - -#: ../../client/equo.py:360 ../../server/reagent.py:111 -msgid "compile packages in provided package set names" -msgstr "компілювати пакунки з іменами даного набору пакунків" - -#: ../../client/equo.py:362 ../../server/reagent.py:113 -msgid "rebuild everything" -msgstr "перебудувати всі" - -#: ../../client/equo.py:363 ../../server/reagent.py:114 -msgid "run database update if all went fine" -msgstr "виконати оновлення бази даних, якщо все пройшло добре" - -#: ../../client/equo.py:364 ../../server/reagent.py:115 -msgid "run mirror sync if all went fine" -msgstr "виконати синхронізацію з дзеркалом, якщо все гаразд" - -#: ../../client/equo.py:365 -msgid "scan orphaned packages on SPM" -msgstr "шукати осиротілі пакунки в SPM" - -#: ../../client/equo.py:369 ../../server/activator.py:74 -msgid "notice board handling functions" -msgstr "функції обслуговування дошки повідомлень" - -#: ../../client/equo.py:370 ../../server/activator.py:75 -msgid "add a news item to the notice board" -msgstr "додати новину на дошку повідомлень" - -#: ../../client/equo.py:371 ../../server/activator.py:76 -msgid "remove a news item from the notice board" -msgstr "видалити новину з дошки повідомлень" - -#: ../../client/equo.py:372 ../../server/activator.py:77 -msgid "read the current notice board" -msgstr "прочитати актуальну дошку повідомлень" - -#: ../../client/equo.py:376 -msgid "look for unsatisfied dependencies across community repositories" -msgstr "шукати недотримані залежності в репозиторіях співтовариства" - -#: ../../client/equo.py:377 ../../server/reagent.py:123 -msgid "verify the integrity of local package files" -msgstr "перевірити цілісність файлів локального пакунку" - -#: ../../client/equo.py:380 msgid "handles User Generated Content features" msgstr "обслуговує елементи вмісту, згенерованого користувачем" -#: ../../client/equo.py:381 +#: ../../client/equo.py:265 msgid "login against a specified repository" msgstr "увійти (залогінитись) в певний репозиторій" -#: ../../client/equo.py:382 +#: ../../client/equo.py:266 msgid "logout from a specified repository" msgstr "вийти (розлогінитись) з певного репозиторію" -#: ../../client/equo.py:383 +#: ../../client/equo.py:267 msgid "force action" msgstr "пришвидшити виконання" -#: ../../client/equo.py:384 +#: ../../client/equo.py:268 msgid "" "manage package documents for the selected repository (comments, files, " "videos)" @@ -6044,80 +5701,69 @@ msgstr "" "керувати документами пакунків для обраного репозиторію (коментарі,файли, " "відео)" -#: ../../client/equo.py:385 +#: ../../client/equo.py:269 msgid "" "get available documents for the specified package key (example: x11-libs/qt)" msgstr "" "отримати наявні документи за обраним ключем пакунку (приклад: x11-libs/qt)" -#: ../../client/equo.py:386 +#: ../../client/equo.py:270 msgid "add a new document to the specified package key (example: x11-libs/qt)" msgstr "" "додати новий документ для обраного ключа пакунку (приклад: x11-libs/qt)" -#: ../../client/equo.py:387 +#: ../../client/equo.py:271 msgid "remove documents from database using their identifiers" msgstr "видалити документи з бази даних, використовуючи їх найменування" -#: ../../client/equo.py:388 +#: ../../client/equo.py:272 msgid "manage package votes for the selected repository" msgstr "керувати оцінками пакунків для обраного репозиторію" -#: ../../client/equo.py:389 +#: ../../client/equo.py:273 msgid "get vote for the specified package key (example: x11-libs/qt)" msgstr "отримати голос для зазначеного ключа пакунку (приклад: x11-libs/qt)" -#: ../../client/equo.py:390 +#: ../../client/equo.py:274 msgid "add vote for the specified package key (example: x11-libs/qt)" msgstr "додати голос для обраного ключа пакунку (приклад: x11-libs/qt)" -#: ../../client/equo.py:393 +#: ../../client/equo.py:277 msgid "handles Entropy cache" msgstr "обслуговує кеш Entropy" -#: ../../client/equo.py:394 +#: ../../client/equo.py:278 msgid "clean Entropy cache" msgstr "очистити кеш Entropy" -#: ../../client/equo.py:398 +#: ../../client/equo.py:282 msgid "remove downloaded packages and clean temp. directories" msgstr "видалити завантажені пакунки і очистити тимчасові директорії" -#: ../../client/equo.py:400 +#: ../../client/equo.py:284 msgid "show system information" msgstr "відобразити інформацію системи" -#: ../../client/equo.py:467 -msgid "You need to install sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Вам необхідно встановити sys-apps/entropy-server :) Ну-ж бо, зробіть це!" - -#: ../../client/equo.py:547 -msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" -msgstr "" -"Вам необхідно встановити/оновити sys-apps/entropy-server :-) Ну-ж бо, " -"зробітьце!" - -#: ../../client/equo.py:835 +#: ../../client/equo.py:585 msgid "not enough parameters" msgstr "недостатньо параметрів" -#: ../../client/equo.py:885 +#: ../../client/equo.py:635 #, fuzzy msgid "Installed packages repository corrupted. Please re-generate it" msgstr "" "База даних інстальованих пакунків не знайдена або зіпсована.Будь-ласка, " "згенеруйте її, застосовуючи інструменти 'equo database'" -#: ../../client/equo.py:922 +#: ../../client/equo.py:672 msgid "Your hard drive is full! Your fault!" msgstr "" -#: ../../client/equo.py:928 +#: ../../client/equo.py:678 msgid "No more memory dude! Your fault!" msgstr "" -#: ../../client/equo.py:933 +#: ../../client/equo.py:683 #, fuzzy msgid "" "Hi. My name is Bug Reporter. I am sorry to inform you that Equo crashed. " @@ -6127,26 +5773,26 @@ msgstr "" "про це говорити,але на жаль, Equo шляк трафив. Ну що тут вдієш, друже, не " "все в середу Петра..." -#: ../../client/equo.py:934 +#: ../../client/equo.py:684 msgid "" "But there's something you could do to help Equo to be a better application." msgstr "" "Але при цьому Ви могли б дещо посприяти тому, щоб Equo став меншглючною " "програмою." -#: ../../client/equo.py:935 +#: ../../client/equo.py:685 #, fuzzy msgid "-- EVEN IF I DON'T WANT YOU TO SUBMIT THE SAME REPORT MULTIPLE TIMES --" msgstr "" "- ПРИНАЙМНІ ТОМУ, ЩО Я НЕ ХОЧУ, АБИ ТОБІ ДОВЕЛОСЬНАДСИЛАТИ ЦЕЙ КЛЯТИЙ ЗВІТ " "СОТНЮ РАЗ --" -#: ../../client/equo.py:936 +#: ../../client/equo.py:686 msgid "Now I am showing you what happened. Don't panic, I'm here to help you." msgstr "" "Зараз я покажу тобі, що скоїлось. Не панікуй, я тут, аби допомогти тобі." -#: ../../client/equo.py:945 +#: ../../client/equo.py:695 #, fuzzy msgid "" "Oh well, I cannot even write to /tmp. So, please copy the error and mail " @@ -6155,11 +5801,11 @@ msgstr "" "Ой, прокляття, я не можу навіть записувати в /tmp. Що ж, будь-ласка,зкопіюй " "цю помилку та надішли її на lxnay@sabayonlinux.org." -#: ../../client/equo.py:964 +#: ../../client/equo.py:714 msgid "Of course you are on the Internet..." msgstr "Ну і, звичайно, ти в інтернеті ..." -#: ../../client/equo.py:965 +#: ../../client/equo.py:715 #, fuzzy msgid "" "Erm... Can I send the error, along with some information\n" @@ -6171,11 +5817,11 @@ msgstr "" " своїм творцям - щоб вони заодно мене підправили? (твій IP при цьому буде " "записано)" -#: ../../client/equo.py:967 +#: ../../client/equo.py:717 msgid "Ok, ok ok ok... Sorry!" msgstr "Ну гаразд, гаразд, гаразд... вибачте, прошу пана!" -#: ../../client/equo.py:971 +#: ../../client/equo.py:721 #, fuzzy msgid "" "If you want to be contacted back (and actively supported), also answer the " @@ -6184,19 +5830,19 @@ msgstr "" "Коли отримаєш відповідь від служби підтримки (і активну підтримку заодно),то " "прошу тебе також дати відповідь на питання:" -#: ../../client/equo.py:972 +#: ../../client/equo.py:722 msgid "Your Full name:" msgstr "Ваше повне ім'я:" -#: ../../client/equo.py:973 +#: ../../client/equo.py:723 msgid "Your E-Mail address:" msgstr "Ваша поштова електронна адреса:" -#: ../../client/equo.py:974 +#: ../../client/equo.py:724 msgid "What you were doing:" msgstr "Що ж ти такого накоїв:" -#: ../../client/equo.py:991 +#: ../../client/equo.py:741 #, fuzzy msgid "" "Thank you very much. The error has been reported and hopefully, the problem " @@ -6205,7 +5851,7 @@ msgstr "" "Дуже дякую. Дані про помилку надіслані і, якщо все будегаразд, - проблему " "буде вирішено якнайшвидше." -#: ../../client/equo.py:993 +#: ../../client/equo.py:743 #, fuzzy msgid "" "Ugh. Cannot send the report. When you want, mail the file below to " @@ -6214,11 +5860,11 @@ msgstr "" "Ех... Не можу надіслати звіт. Я зберіг помилку у /tmp/equoerror.txt.Якщо " "вважаєш за потрібне, надійшли цей файл на lxnay@sabayonlinux.org." -#: ../../client/equo.py:1012 +#: ../../client/equo.py:762 msgid "Entropy/Equo version mismatch" msgstr "" -#: ../../client/equo.py:1013 +#: ../../client/equo.py:763 msgid "it could make your system explode!" msgstr "" @@ -6227,7 +5873,6 @@ msgstr "" #: ../../client/text_ui.py:247 ../../client/text_ui.py:254 #: ../../client/text_ui.py:262 ../../client/text_ui.py:270 #: ../../client/text_ui.py:1297 ../../client/text_ui.py:2032 -#: ../../server/server_reagent.py:1354 msgid "Nothing to do" msgstr "Більше нічого робити" @@ -6377,10 +6022,7 @@ msgstr "зламаний" msgid "atom" msgstr "атом" -#: ../../client/text_ui.py:693 ../../server/server_reagent.py:143 -#: ../../server/server_reagent.py:178 ../../server/server_reagent.py:214 -#: ../../server/server_reagent.py:356 ../../server/server_reagent.py:383 -#: ../../server/server_reagent.py:411 +#: ../../client/text_ui.py:693 msgid "in" msgstr "в" @@ -6406,6 +6048,7 @@ msgid "These are the packages that should be MANUALLY removed" msgstr "Ось пакунки, що мають бути видалені" #: ../../client/text_ui.py:810 ../../client/text_ui.py:1438 +#: ../../server/eit/commands/remove.py:94 #: ../../sulfur/src/sulfur/packages.py:633 msgid "These are the packages that would be removed" msgstr "Ось пакунки, що мають бути видалені" @@ -6638,7 +6281,7 @@ msgstr "Встановлення завершене" msgid "These are the packages that would be masked" msgstr "Ось пакунки, що будуть позначені" -#: ../../client/text_ui.py:1818 ../../server/server_key.py:223 +#: ../../client/text_ui.py:1818 ../../server/eit/commands/key.py:156 #, fuzzy msgid "Would you like to continue?" msgstr "Бажаєте продовжити?" @@ -6676,8 +6319,7 @@ msgstr "Видалення заборонено" msgid "Would you like to calculate dependencies ?" msgstr "Чи бажаєте підрахувати залежності?" -#: ../../client/text_ui.py:2045 ../../server/server_reagent.py:976 -#: ../../server/eit/commands/commit.py:244 +#: ../../client/text_ui.py:2045 ../../server/eit/commands/commit.py:232 msgid "Would you like to remove them now ?" msgstr "Бажаєте видалити їх зараз ?" @@ -6730,7 +6372,10 @@ msgstr "10 секунд" msgid "Libraries/Executables statistics" msgstr "Статистика бібліотек/виконуваних файлів" -#: ../../client/text_ui.py:2390 +#: ../../client/text_ui.py:2390 ../../server/eit/commands/test.py:134 +#: ../../server/eit/commands/query.py:200 +#: ../../server/eit/commands/query.py:241 +#: ../../server/eit/commands/files.py:72 ../../server/eit/commands/cp.py:102 msgid "Not matched" msgstr "Не співпадає" @@ -6738,756 +6383,1038 @@ msgstr "Не співпадає" msgid "Would you like to install them ?" msgstr "Бажаєте їх інсталювати?" -#: ../../server/reagent.py:42 +#: ../../server/eit/main.py:82 +msgid "superuser access required" +msgstr "" + +#: ../../server/eit/commands/test.py:47 +msgid "run given test" +msgstr "" + +#: ../../server/eit/commands/test.py:48 #, fuzzy -msgid "show current repositories status" -msgstr "відобразити статус репозиторіїв" +msgid "available tests" +msgstr "наявно" -#: ../../server/reagent.py:53 -msgid "do some searches into repository databases" -msgstr "пошукайте в базах даних репозиторію" - -#: ../../server/reagent.py:55 +#: ../../server/eit/commands/test.py:51 #, fuzzy -msgid "match package dependency inside the default repository database" -msgstr "шукати пакунки в базі даних репозиторію за замовчуванням" +msgid "dependencies test" +msgstr "Тест залежностей" -#: ../../server/reagent.py:72 +#: ../../server/eit/commands/test.py:55 #, fuzzy -msgid "(re)initialize the current repository" -msgstr "(повторно) обнулити поточну базу даних репозиторію" +msgid "libraries test" +msgstr "Тест бібліотек" -#: ../../server/reagent.py:77 +#: ../../server/eit/commands/test.py:57 #, fuzzy -msgid "do not include reverse dependencies" -msgstr "Неможливо знайти необхідні залежності" +msgid "dump results to file" +msgstr "записати результати у файли" -#: ../../server/reagent.py:80 -msgid "switch to the specified branch the repository" -msgstr "перемкнути репозиторій на обрану гілку" - -#: ../../server/reagent.py:81 +#: ../../server/eit/commands/test.py:61 #, fuzzy -msgid "verify remote integrity of the provided atoms" -msgstr "віддалено перевірити цілісність даних атомів (або всіх)" - -#: ../../server/reagent.py:88 -msgid "clone a package assigning it an arbitrary tag" -msgstr "клонувати пакунок з присвоєнням йому довільного тега" - -#: ../../server/reagent.py:89 -#, fuzzy -msgid "mask given package in given repository" -msgstr "використання пакунків у репозиторії" - -#: ../../server/reagent.py:90 -#, fuzzy -msgid "unmask given packages in given repository" -msgstr "використання пакунків у репозиторії" - -#: ../../server/reagent.py:116 -#, fuzzy -msgid "scan orphaned packages in SPM" -msgstr "шукати осиротілі пакунки в SPM" - -#: ../../server/reagent.py:117 -#, fuzzy -msgid "scan new packages available in SPM" -msgstr "шукати осиротілі пакунки в SPM" - -#: ../../server/reagent.py:120 -#, fuzzy -msgid "look for missing libraries (scan system)" +msgid "library linking test (using repository metadata)" msgstr "шукати зіпсовані бібліотеки" -#: ../../server/reagent.py:122 -#, fuzzy -msgid "look for missing libraries (scan repository metadata)" -msgstr "шукати зіпсовані бібліотеки" - -#: ../../server/reagent.py:125 -msgid "remove downloaded packages and clean temp. directories)" -msgstr "видалити завантажені пакунки і очистити тимчасові теки" - -#: ../../server/server_activator.py:94 -msgid "Starting to sync data across mirrors (packages/database)" -msgstr "Початок синхронізації інформації між дзеркалами (пакунки/база даних)" - -#: ../../server/server_activator.py:122 ../../server/server_activator.py:179 -msgid "Aborting !" -msgstr "Скасовую!" - -#: ../../server/server_activator.py:146 -msgid "Please insert a commit message" -msgstr "Будь-ласка, введіть повідомлення підтвердження" - -#: ../../server/server_activator.py:174 -#, fuzzy -msgid "Should I continue with the tidy procedure ?" -msgstr "Чи слід мені продовжувати при порожній процедурі?" - -#: ../../server/server_activator.py:315 -msgid "Exit/Commit" -msgstr "Вийти/Підтвердити" - -#: ../../server/server_activator.py:344 -msgid "Notice text" -msgstr "Текст повідомлення" - -#: ../../server/server_activator.py:345 -msgid "Relevant URL (optional)" -msgstr "Важливе посилання (додатково)" - -#: ../../server/server_activator.py:349 -msgid "Repository notice board, new item insertion" -msgstr "Дошка повідомлень репозиторіїв, введення нового запису" - -#: ../../server/server_activator.py:392 -msgid "Choose the one you want to remove" -msgstr "Оберіть ту, котру бажаєте видалити" - -#: ../../server/server_activator.py:398 -msgid "Are you sure you want to remove this?" -msgstr "Ви впевнені, що бажаєте видалити?" - -#: ../../server/server_activator.py:450 -msgid "Starting to lock mirrors databases" -msgstr "Початок блокування баз даних дзеркал" - -#: ../../server/server_activator.py:456 ../../server/server_activator.py:470 -#: ../../server/server_activator.py:486 ../../server/server_activator.py:501 -msgid "A problem occured on at least one mirror" -msgstr "Виникла проблема з останнім дзеркалом" - -#: ../../server/server_activator.py:458 -#, fuzzy -msgid "Repositories lock complete" -msgstr "Відновлення завершене" - -#: ../../server/server_activator.py:464 -msgid "Starting to unlock mirrors databases" -msgstr "Починаю розблокування баз даних дзеркал" - -#: ../../server/server_activator.py:473 -#, fuzzy -msgid "Repositories unlock complete" -msgstr "Відновлення завершене" - -#: ../../server/server_activator.py:479 -msgid "Starting to lock download mirrors databases" -msgstr "Початок блокування завантаження баз даних дзеркал" - -#: ../../server/server_activator.py:488 -msgid "Download mirrors lock complete" -msgstr "Блокування завантаження дзеркал завершено" - -#: ../../server/server_activator.py:494 -msgid "Starting to unlock download mirrors databases" -msgstr "Починаю розблокування завантаження баз даних дзеркал" - -#: ../../server/server_activator.py:503 -msgid "Download mirrors unlock complete" -msgstr "Розблокування завантаження дзеркал завершено" - -#: ../../server/server_activator.py:521 -msgid "DATABASE" -msgstr "БАЗА ДАНИХ" - -#: ../../server/server_activator.py:522 -msgid "DOWNLOAD" -msgstr "ЗАВАНТАЖЕННЯ" - -#: ../../server/server_activator.py:557 ../../server/server_activator.py:561 -#, fuzzy -msgid "Syncing repository" -msgstr "в репозиторіях" - -#: ../../server/server_activator.py:566 -#, fuzzy -msgid "Repositories sync error, cannot continue." -msgstr "Помилки синхронізації бази даних, неможливо продовжити" - -#: ../../server/server_activator.py:588 -#, fuzzy -msgid "Cleaning unavailable packages from repository" -msgstr "Підрахунок наявних пакунків для" - -#: ../../server/server_activator.py:590 -msgid "" -"Removing unavailable packages, overriding Entropy defaults is generally bad." +#: ../../server/eit/commands/test.py:64 +msgid "excluded soname" msgstr "" -#: ../../server/server_activator.py:592 -msgid "" -"Users with outdated repositories, won't be able to find package files " -"remotely." +#: ../../server/eit/commands/test.py:68 +msgid "library linking test (using live system)" msgstr "" -#: ../../server/server_activator.py:604 ../../server/server_activator.py:622 +#: ../../server/eit/commands/test.py:71 ../../server/eit/commands/query.py:80 +#: ../../server/eit/commands/query.py:98 +#: ../../server/eit/commands/repack.py:40 ../../server/eit/commands/add.py:40 +#: ../../server/eit/commands/files.py:46 #, fuzzy -msgid "Remote Entropy Repository Status" -msgstr "Статус репозиторію віддаленої бази даних Entropy" +msgid "package names" +msgstr "Атоми пакунків" -#: ../../server/server_activator.py:609 ../../server/server_activator.py:627 -msgid "Host" -msgstr "Хост" - -#. Setup revision column -#: ../../server/server_activator.py:610 ../../server/server_activator.py:628 -#: ../../sulfur/src/sulfur/views.py:3152 -#: ../../sulfur/src/sulfur/sulfur.glade.h:209 -msgid "Revision" -msgstr "Перевірка" - -#: ../../server/server_activator.py:615 +#: ../../server/eit/commands/test.py:75 #, fuzzy -msgid "Local revision currently at" -msgstr "Поточна локальна версія бази даних -" +msgid "verify local packages integrity" +msgstr "також справдити цілісність пакунків" -#: ../../server/activator.py:47 -msgid "choose on what branch operating" -msgstr "оберіть, з якою гілкою працювати" - -#: ../../server/activator.py:50 ../../server/activator.py:64 -msgid "same as sync, but put repository database ONLY into a dummy repository" +#: ../../server/eit/commands/test.py:80 ../../server/eit/commands/test.py:89 +#: ../../server/eit/commands/init.py:44 ../../server/eit/commands/reset.py:49 +#: ../../server/eit/commands/push.py:63 ../../server/eit/commands/merge.py:51 +#: ../../server/eit/commands/commit.py:60 ../../server/eit/commands/add.py:46 +#: ../../server/eit/commands/cleanup.py:44 +#: ../../server/eit/commands/vacuum.py:50 +#: ../../server/eit/commands/remove.py:55 +#: ../../server/eit/commands/branch.py:51 +msgid "no stupid questions" msgstr "" -#: ../../server/activator.py:54 -msgid "package repositories handling functions" -msgstr "функції обробки пакунків репозиторіїв" - -#: ../../server/activator.py:55 -msgid "sync package repositories across primary mirrors" -msgstr "синхронізація пакунків репозиторіїв з основними дзеркалами" - -#: ../../server/activator.py:61 +#: ../../server/eit/commands/test.py:84 #, fuzzy -msgid "repository handling functions" -msgstr "функції обробки пакунків репозиторіїв" +msgid "verify remote packages integrity" +msgstr "також справдити цілісність пакунків" -#: ../../server/server_key.py:26 -msgid "GPG interface loaded, home directory" +#: ../../server/eit/commands/test.py:174 +msgid "run QA tests" msgstr "" -#: ../../server/server_key.py:120 +#: ../../server/eit/commands/query.py:55 #, fuzzy -msgid "Importing keypair for repository" -msgstr "Хибний репозиторій" +msgid "execute query" +msgstr "Виконати копію" -#: ../../server/server_key.py:125 +#: ../../server/eit/commands/query.py:56 #, fuzzy -msgid "Another keypair already exists for repository" -msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" +msgid "available queries" +msgstr "наявно" -#: ../../server/server_key.py:137 -msgid "Imported GPG key with fingerprint" +#: ../../server/eit/commands/query.py:59 +#, fuzzy +msgid "search package tags" +msgstr "package.mask користувача" + +#: ../../server/eit/commands/query.py:62 ../../server/eit/commands/query.py:75 +#: ../../server/eit/commands/query.py:87 +#: ../../server/eit/commands/query.py:105 +#: ../../server/eit/commands/query.py:121 ../../server/eit/commands/list.py:53 +#: ../../server/eit/commands/own.py:54 ../../server/eit/commands/search.py:56 +#: ../../server/eit/commands/match.py:52 ../../server/eit/commands/lock.py:61 +#: ../../server/eit/commands/revgraph.py:59 +#: ../../server/eit/commands/files.py:49 ../../server/eit/commands/graph.py:59 +msgid "quiet output, for scripting purposes" msgstr "" -#: ../../server/server_key.py:143 ../../server/server_key.py:270 +#: ../../server/eit/commands/query.py:64 +#: ../../server/eit/commands/query.py:110 +#: ../../server/eit/commands/query.py:126 #, fuzzy -msgid "Now you should sign all the packages in it" -msgstr "Вам слід встановити їх якомога раніше" - -#: ../../server/server_key.py:155 -#, fuzzy -msgid "Exporting private key for repository" -msgstr "Репозиторій призначення" - -#: ../../server/server_key.py:159 -#, fuzzy -msgid "Exporting public key for repository" -msgstr "Сортувати за репозиторієм" - -#: ../../server/server_key.py:164 -#, fuzzy -msgid "No keypair available for repository" -msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" - -#: ../../server/server_key.py:172 -msgid "Keypair is EXPIRED for repository" -msgstr "" - -#: ../../server/server_key.py:192 -#, fuzzy -msgid "Unable to export GPG key for repository" -msgstr "Хибний репозиторій" - -#: ../../server/server_key.py:201 -#, fuzzy -msgid "Exported GPG key for repository" -msgstr "Хибний репозиторій" - -#: ../../server/server_key.py:213 -#, fuzzy -msgid "Creating keys for repository" -msgstr "Хибний репозиторій" - -#: ../../server/server_key.py:218 -#, fuzzy -msgid "Another key already exists for repository" -msgstr "увійшов до головного репозиторію" - -#: ../../server/server_key.py:241 -#, fuzzy -msgid "Insert e-mail" -msgstr "Введіть URL" - -#: ../../server/server_key.py:242 -msgid "Insert expiration days (0=no expiration)" -msgstr "" - -#: ../../server/server_key.py:244 -msgid "Insert passphrase (empty=no passphrase)" -msgstr "" - -#: ../../server/server_key.py:248 -#, fuzzy -msgid "Repository GPG keypair creation" -msgstr "Інформація репозиторіїв" - -#: ../../server/server_key.py:264 -msgid "Produced GPG key with fingerprint" -msgstr "" - -#: ../../server/server_key.py:276 -msgid "" -"Make friggin' sure to generate a revoke key and store it in a very safe " -"place." -msgstr "" - -#: ../../server/server_key.py:285 -msgid "You may also want to send your keys to a key server" -msgstr "" - -#: ../../server/server_key.py:298 -#, fuzzy -msgid "Deleting keys for repository" -msgstr "Хибний репозиторій" - -#: ../../server/server_key.py:303 -#, fuzzy -msgid "No keys available for given repository" +msgid "query into given repository only" msgstr "увімкнути обраний репозиторій" -#: ../../server/server_key.py:310 +#: ../../server/eit/commands/query.py:68 #, fuzzy -msgid "Are you really sure?" -msgstr "Ви готові?" +msgid "tag name" +msgstr "Назва хоста" -#: ../../server/server_key.py:318 ../../server/server_key.py:345 +#: ../../server/eit/commands/query.py:72 #, fuzzy -msgid "Keys metadata not available for" -msgstr "недоступний" +msgid "show libraries (.so) required by matched packages" +msgstr "Ось підходящі пакунки" -#: ../../server/server_key.py:331 -msgid "Deleted GPG key with fingerprint" +#: ../../server/eit/commands/query.py:84 +#, fuzzy +msgid "show reverse dependencies of packages" +msgstr "відобразити, які пакунки залежать від даних атомів" + +#: ../../server/eit/commands/query.py:90 +msgid "verbose output, show more info" msgstr "" -#: ../../server/server_key.py:353 +#: ../../server/eit/commands/query.py:93 #, fuzzy -msgid "GPG information for repository" -msgstr "використання пакунків у репозиторії" +msgid "include build dependencies" +msgstr "Неможливо знайти необхідні залежності" -#: ../../server/server_key.py:375 +#: ../../server/eit/commands/query.py:102 #, fuzzy -msgid "Public key identifier" -msgstr "Імена пакунків" +msgid "search through package sets" +msgstr "пошук наявних наборів пакунків" -#: ../../server/server_key.py:376 -msgid "Public key fingerprint" +#: ../../server/eit/commands/query.py:108 +msgid "verbose output, show package sets content" msgstr "" -#: ../../server/server_key.py:377 -msgid "Key size" +#: ../../server/eit/commands/query.py:114 +#, fuzzy +msgid "package set name" +msgstr "Ім'я набору пакунків" + +#: ../../server/eit/commands/query.py:118 +#, fuzzy +msgid "search packages through their description" +msgstr "шукати пакунки за описом" + +#: ../../server/eit/commands/query.py:124 +#, fuzzy +msgid "verbose output, show more information" +msgstr "Інформація репозиторіїв" + +#: ../../server/eit/commands/query.py:130 +#, fuzzy +msgid "package description" +msgstr "Опис пакунку" + +#: ../../server/eit/commands/query.py:174 +#, fuzzy +msgid "Nothing found for" +msgstr "Нічого не знайдено" + +#: ../../server/eit/commands/query.py:220 +#, fuzzy +msgid "libraries found" +msgstr "бібліотеки" + +#: ../../server/eit/commands/query.py:262 +msgid "revdep(s) found" msgstr "" -#: ../../server/server_key.py:378 ../../sulfur/src/sulfur/sulfur.glade.h:48 -msgid "Creation date" -msgstr "Дата створення" - -#: ../../server/server_key.py:379 -msgid "Expires on" -msgstr "" - -#: ../../server/server_reagent.py:64 -msgid "no package specified." -msgstr "жодного пакунку не обрано." - -#: ../../server/server_reagent.py:84 -msgid "Enabling" -msgstr "Увімкнення" - -#: ../../server/server_reagent.py:89 ../../sulfur/src/sulfur/dialogs.py:2441 -msgid "Enabled" -msgstr "Увімкнено" - -#: ../../server/server_reagent.py:94 -msgid "already enabled" -msgstr "вже увімкнено" - -#: ../../server/server_reagent.py:102 -msgid "Disabling" -msgstr "Вимкнення" - -#: ../../server/server_reagent.py:106 -msgid "Disabled" -msgstr "Вимкнений" - -#: ../../server/server_reagent.py:111 -msgid "already disabled" -msgstr "вже вимкнено" - -#: ../../server/server_reagent.py:121 ../../server/server_reagent.py:154 -#: ../../server/server_reagent.py:193 ../../server/server_reagent.py:343 -#: ../../server/server_reagent.py:370 +#: ../../server/eit/commands/query.py:313 #, fuzzy -msgid "Invalid syntax." -msgstr "Помилковий рядок." +msgid "sets found" +msgstr "користувача не знайдено" -#: ../../server/server_reagent.py:129 ../../server/server_reagent.py:162 -#: ../../server/server_reagent.py:201 ../../server/server_reagent.py:352 -#: ../../server/server_reagent.py:379 +#: ../../server/eit/commands/query.py:347 #, fuzzy -msgid "No valid repository specified." -msgstr "Жодного коректного репозиторію не обрано." +msgid "packages found" +msgstr "Пакунків не знайдено" -#: ../../server/server_reagent.py:142 ../../server/server_reagent.py:177 -#: ../../server/server_reagent.py:213 ../../server/server_reagent.py:410 -#: ../../server/server_reagent.py:880 ../../server/eit/commands/commit.py:124 -msgid "Cannot match" -msgstr "Неможливо порівняти" - -#: ../../server/server_reagent.py:183 ../../server/server_reagent.py:218 +#: ../../server/eit/commands/query.py:356 #, fuzzy -msgid "No packages selected." -msgstr "Жодного пакунку не обрано" +msgid "miscellaneous package metadata queries" +msgstr "примусове оновлення мета-інформації пакунків" -#: ../../server/server_reagent.py:235 -msgid "package dependencies" -msgstr "залежності пакунків" - -#: ../../server/server_reagent.py:244 -msgid "No dependencies" -msgstr "Без залежностей" - -#: ../../server/server_reagent.py:274 -#, fuzzy -msgid "Dependency type" -msgstr "Тест залежностей" - -#: ../../server/server_reagent.py:279 -#, fuzzy -msgid "Select a dependency type for" -msgstr "ручні залежності для" - -#: ../../server/server_reagent.py:303 -#, fuzzy -msgid "Dependencies editor" -msgstr "Тест залежностей" - -#: ../../server/server_reagent.py:312 -#, fuzzy -msgid "Confirm ?" -msgstr "Підтвердити" - -#: ../../server/server_reagent.py:335 -#, fuzzy -msgid "dependencies updated successfully" -msgstr "залежності, що призначаються власноруч, вдало додані" - -#: ../../server/server_reagent.py:355 -#, fuzzy -msgid "Masking" -msgstr "Маскування пакунку" - -#: ../../server/server_reagent.py:382 -#, fuzzy -msgid "Unmasking" -msgstr "Розпакування" - -#: ../../server/server_reagent.py:436 -msgid "Matching packages to remove" -msgstr "Порівняння пакунків до видалення" - -#: ../../server/server_reagent.py:438 ../../server/server_reagent.py:532 -#: ../../server/server_reagent.py:762 -msgid "Not enough parameters" -msgstr "Недостатньо параметрів" - -#: ../../server/server_reagent.py:460 ../../server/server_reagent.py:971 -msgid "These are the packages that would be removed from the database" -msgstr "Ось пакунки, що будуть вилучені з бази даних" - -#: ../../server/server_reagent.py:475 ../../server/server_reagent.py:522 -msgid "Removing selected packages" -msgstr "Вилучення обраних пакунків" - -#: ../../server/server_reagent.py:479 ../../server/server_reagent.py:527 -msgid "Packages removed. To remove binary packages, run activator." -msgstr "Пакунки вилучені. Щоб видалити бінарні пакунки, увімкніть активатор." - -#: ../../server/server_reagent.py:485 -msgid "Searching injected packages to remove" -msgstr "Пошук додаткових пакунків до видалення" - -#: ../../server/server_reagent.py:511 -msgid "These are the injected packages pulled in for removal" -msgstr "Тут введені пакунки, відібрані до видалення" - -#: ../../server/server_reagent.py:537 -msgid "Switching branch, be sure to have your packages in sync." -msgstr "При перемиканні гілки, будьте певні, що ваші пакунки синхронізовані" - -#: ../../server/server_reagent.py:544 -msgid "Collecting packages that would be marked" -msgstr "Підрахунок пакунків, що будуть позначені" - -#: ../../server/server_reagent.py:553 -msgid "These are the packages that would be marked" -msgstr "Ось пакунки, що будуть позначені" - -#: ../../server/server_reagent.py:688 -msgid "No valid repositories specified." -msgstr "Жодного коректного репозиторію не обрано." - -#: ../../server/server_reagent.py:693 -msgid "Invalid repositories specified." -msgstr "обрані некоректні репозиторії." - -#: ../../server/server_reagent.py:738 -#, fuzzy -msgid "Entropy repository has been initialized" -msgstr "Ваш репозиторій за замовчуванням не ініціалізовано" - -#: ../../server/server_reagent.py:748 -msgid "Creating empty database to" -msgstr "Створення порожньої бази даних в" - -#: ../../server/server_reagent.py:751 -msgid "Cannot overwrite already existing file" -msgstr "Неможливо перезаписати вже існуючий файл" - -#: ../../server/server_reagent.py:776 -msgid "Bumping Repository database" -msgstr "Створюю резервну копію бази даних репозиторію" - -#: ../../server/server_reagent.py:896 ../../server/eit/commands/commit.py:141 -msgid "No valid packages to repackage." -msgstr "Немає коректних пакунків до перепакування" - -#. normal scanning -#: ../../server/server_reagent.py:901 ../../server/eit/commands/commit.py:145 -msgid "Scanning database for differences" -msgstr "Сканую базу даних на відмінності" - -#: ../../server/server_reagent.py:921 -#, fuzzy -msgid "Invalid atom" -msgstr "Хибна дія." - -#: ../../server/server_reagent.py:928 ../../server/eit/commands/commit.py:175 -msgid "Zarro thinggz totoo" -msgstr "І ще дещо зробити" - -#: ../../server/server_reagent.py:932 -msgid "These are the packages that would be changed to injected status" -msgstr "Ось пакунки, статус яких має бути змінено на 'введено'" - -#: ../../server/server_reagent.py:938 -#, fuzzy -msgid "Would you like to transform them now ?" -msgstr "Бажаєте трансформувати їх зараз?" - -#: ../../server/server_reagent.py:945 -msgid "Transforming from database" -msgstr "Трансформування з бази даних" - -#: ../../server/server_reagent.py:947 -msgid "Database transform complete" -msgstr "Трансформація даних бази завершена" - -#: ../../server/server_reagent.py:956 ../../server/eit/commands/commit.py:216 -msgid "expired" -msgstr "протермінований" - -#: ../../server/server_reagent.py:960 -msgid "So sweetheart, what packages do you want to remove ?" -msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" - -#: ../../server/server_reagent.py:964 ../../server/eit/commands/commit.py:228 -msgid "Remove this package?" -msgstr "Видалити пакунки" - -#: ../../server/server_reagent.py:989 -msgid "So sweetheart, what packages do you want to add ?" -msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" - -#: ../../server/server_reagent.py:993 ../../server/eit/commands/commit.py:266 -msgid "Add this package?" -msgstr "Додати цей пакунок?" - -#: ../../server/server_reagent.py:1000 -#, fuzzy -msgid "These are the packages that would be added/updated" -msgstr "Тут перераховані пакунки, що будуть встановлені/оновлені" - -#: ../../server/server_reagent.py:1030 ../../server/eit/commands/commit.py:307 -#, fuzzy -msgid "warning" -msgstr "Обережно" - -#: ../../server/server_reagent.py:1037 ../../server/eit/commands/commit.py:314 -msgid "Would you like to package them now ?" -msgstr "Бажаєте запакувати їх зараз?" - -#: ../../server/server_reagent.py:1038 ../../server/eit/commands/commit.py:315 -msgid "inside" -msgstr "всередині" - -#. package them -#: ../../server/server_reagent.py:1050 ../../server/eit/commands/commit.py:328 -msgid "Compressing packages" -msgstr "Стиснення пакунків" - -#: ../../server/server_reagent.py:1061 ../../server/eit/commands/commit.py:340 -msgid "Ignoring broken Spm entry, please recompile it" -msgstr "Пропускаємо зіпсований запис Spm, будь-ласка, налаштуйте його повторно" - -#: ../../server/server_reagent.py:1064 ../../server/eit/commands/commit.py:344 -msgid "Nothing to do, check later." -msgstr "Робити більше нічого, перевірте згодом." - -#: ../../server/server_reagent.py:1077 ../../server/eit/commands/commit.py:358 -msgid "Entries handled" -msgstr "обслуговані записи" - -#: ../../server/server_reagent.py:1122 ../../server/eit/commands/status.py:105 +#: ../../server/eit/commands/status.py:84 #, fuzzy msgid "local revision" msgstr "перевірка" -#: ../../server/server_reagent.py:1129 ../../server/eit/commands/status.py:112 +#: ../../server/eit/commands/status.py:91 #, fuzzy msgid "stored packages" msgstr "замаскований пакунок" -#: ../../server/server_reagent.py:1134 ../../server/eit/commands/status.py:117 +#: ../../server/eit/commands/status.py:96 #, fuzzy msgid "upload packages" msgstr "завантажені пакунки" -#: ../../server/server_reagent.py:1140 ../../server/eit/commands/status.py:124 +#: ../../server/eit/commands/status.py:103 #, fuzzy msgid "unstaged packages" msgstr "замаскований пакунок" -#: ../../server/server_reagent.py:1171 ../../server/eit/commands/status.py:156 +#: ../../server/eit/commands/status.py:135 #, fuzzy msgid "add" msgstr "До додавання" -#: ../../server/server_reagent.py:1181 ../../server/eit/commands/status.py:168 +#: ../../server/eit/commands/status.py:147 #, fuzzy msgid "switch injected" msgstr "переключення" -#: ../../server/server_reagent.py:1258 -#, fuzzy -msgid "" -"These are the newly available packages, either updatable or not installed" -msgstr "Ось пакунки, що повинні бути встановлені" - -#: ../../server/server_reagent.py:1310 -msgid "No package sets found" -msgstr "Не знайдено жодного набору пакунків" - -#: ../../server/server_reagent.py:1318 -msgid "package set not found" -msgstr "набір пакунків не знайдений" - -#: ../../server/server_query.py:53 ../../server/server_query.py:77 -#: ../../sulfur/src/sulfur/packages.py:1135 -msgid "Nothing found" -msgstr "Нічого не знайдено" - -#: ../../server/eit/main.py:80 -msgid "superuser access required" -msgstr "" - -#: ../../server/eit/commands/status.py:178 +#: ../../server/eit/commands/status.py:157 +#: ../../server/eit/commands/list.py:132 #, fuzzy msgid "show repository status" msgstr "відобразити статус репозиторіїв" -#: ../../server/eit/commands/help.py:34 +#: ../../server/eit/commands/list.py:56 +#, fuzzy +msgid "output more package info" +msgstr "зламані пакунки" + +#: ../../server/eit/commands/list.py:59 +#, fuzzy +msgid "only list injected packages" +msgstr "відобразити перелік встановлених пакунків" + +#: ../../server/eit/commands/list.py:80 +msgid "not available" +msgstr "недоступний" + +#: ../../server/eit/commands/list.py:124 +#, fuzzy +msgid "No packages" +msgstr "пакунки" + +#: ../../server/eit/commands/own.py:50 +msgid "path" +msgstr "" + +#: ../../server/eit/commands/own.py:56 ../../server/eit/commands/search.py:51 +#: ../../server/eit/commands/revgraph.py:52 +#: ../../server/eit/commands/graph.py:52 +#, fuzzy +msgid "search packages in given repository" +msgstr "знайти пакунки в репозиторіях" + +#: ../../server/eit/commands/own.py:92 +#, fuzzy +msgid "search packages owning paths" +msgstr "знайти пакунки в репозиторіях" + +#: ../../server/eit/commands/init.py:59 +#, fuzzy +msgid "Entropy repository has been initialized" +msgstr "Ваш репозиторій за замовчуванням не ініціалізовано" + +#: ../../server/eit/commands/init.py:69 +msgid "initialize repository (erasing all its content)" +msgstr "" + +#: ../../server/eit/commands/mv.py:40 ../../server/eit/commands/cp.py:50 +#, fuzzy +msgid "source repository" +msgstr "Поточний репозиторій" + +#: ../../server/eit/commands/mv.py:42 ../../server/eit/commands/cp.py:53 +#, fuzzy +msgid "destination repository" +msgstr "оберіть репозиторій призначення" + +#: ../../server/eit/commands/mv.py:45 ../../server/eit/commands/cp.py:56 +#, fuzzy +msgid "include dependencies" +msgstr "залежності пакунків" + +#: ../../server/eit/commands/mv.py:47 +msgid "package names (all if none)" +msgstr "" + +#: ../../server/eit/commands/mv.py:67 +msgid "move packages from a repository to another" +msgstr "перемістити пакунки в інший репозиторій" + +#: ../../server/eit/commands/search.py:49 +#: ../../server/eit/commands/match.py:48 +#: ../../server/eit/commands/revgraph.py:50 +#: ../../server/eit/commands/remove.py:46 ../../server/eit/commands/deps.py:44 +#: ../../server/eit/commands/graph.py:50 +#, fuzzy +msgid "package name" +msgstr "Ім'я набору пакунків" + +#: ../../server/eit/commands/search.py:96 +#: ../../server/eit/commands/match.py:85 +#: ../../sulfur/src/sulfur/packages.py:1135 +msgid "Nothing found" +msgstr "Нічого не знайдено" + +#: ../../server/eit/commands/reset.py:52 +#, fuzzy +msgid "do not pull the remote repository" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/reset.py:79 +#, fuzzy +msgid "reset error" +msgstr "помилка сокета" + +#: ../../server/eit/commands/reset.py:84 +#, fuzzy +msgid "local repository revision reset complete" +msgstr "Перевірка репозиторію" + +#: ../../server/eit/commands/reset.py:95 +#, fuzzy +msgid "reset repository to remote status" +msgstr "відобразити статус репозиторіїв" + +#: ../../server/eit/commands/checkout.py:65 +#, fuzzy +msgid "switch from a repository to another" +msgstr "перемістити пакунки в інший репозиторій" + +#: ../../server/eit/commands/help.py:38 msgid "Entropy Infrastructure Toolkit" msgstr "" -#: ../../server/eit/commands/help.py:54 ../../services/kernel-switcher:226 +#: ../../server/eit/commands/help.py:66 ../../services/kernel-switcher:226 #, fuzzy msgid "this help" msgstr "цю інструкцію" -#: ../../server/eit/commands/commit.py:60 +#: ../../server/eit/commands/bump.py:44 +#, fuzzy +msgid "sync with remote repository" +msgstr "В репозиторій" + +#: ../../server/eit/commands/bump.py:59 +#, fuzzy +msgid "Bumping repository" +msgstr "Пропускаю репозиторій" + +#: ../../server/eit/commands/bump.py:70 +#, fuzzy +msgid "bump repository revision, force push" +msgstr "Перевірка репозиторію" + +#: ../../server/eit/commands/push.py:68 +#, fuzzy +msgid "push all the repositories" +msgstr "Оновити репозиторії" + +#: ../../server/eit/commands/push.py:70 +#, fuzzy +msgid "push as fake repository" +msgstr "Оберіть репозиторій" + +#: ../../server/eit/commands/push.py:146 +msgid "Commit message" +msgstr "Підтвердити повідомлення" + +#: ../../server/eit/commands/push.py:148 +#, fuzzy +msgid "Enter the commit message" +msgstr "Будь-ласка, введіть повідомлення підтвердження" + +#: ../../server/eit/commands/push.py:169 +#, fuzzy +msgid "Entropy Repository Status" +msgstr "Статус репозиторію віддаленої бази даних Entropy" + +#: ../../server/eit/commands/push.py:176 +msgid "Host" +msgstr "Хост" + +#: ../../server/eit/commands/push.py:179 +#, fuzzy +msgid "Remote" +msgstr "Віддалено" + +#: ../../server/eit/commands/push.py:185 +#, fuzzy +msgid "Local" +msgstr "локально" + +#: ../../server/eit/commands/push.py:208 ../../server/eit/commands/push.py:244 +msgid "Aborting !" +msgstr "Скасовую!" + +#: ../../server/eit/commands/push.py:240 +msgid "Should I cleanup old packages on mirrors ?" +msgstr "" + +#: ../../server/eit/commands/push.py:255 +msgid "push (or pull) repository packages and metadata" +msgstr "" + +#: ../../server/eit/commands/notice.py:48 +#, fuzzy +msgid "execute given action" +msgstr "Отримати інформацію щодо пакунку" + +#: ../../server/eit/commands/notice.py:49 ../../server/eit/commands/key.py:51 +#, fuzzy +msgid "available actions" +msgstr "недоступно, але це нормально" + +#: ../../server/eit/commands/notice.py:52 +#, fuzzy +msgid "add notice-board entry" +msgstr "Додати запис до дошки повідомлень" + +#: ../../server/eit/commands/notice.py:58 +#, fuzzy +msgid "remove notice-board entry" +msgstr "Видалити запис з дошки повідомлень" + +#: ../../server/eit/commands/notice.py:64 +#, fuzzy +msgid "show notice-board" +msgstr "Дошка повідомлень" + +#: ../../server/eit/commands/notice.py:164 +#, fuzzy +msgid "no URL" +msgstr "Введіть URL" + +#: ../../server/eit/commands/notice.py:166 +#: ../../server/eit/commands/notice.py:318 +#, fuzzy +msgid "URL" +msgstr "URI" + +#: ../../server/eit/commands/notice.py:240 +msgid "Choose the one you want to remove" +msgstr "Оберіть ту, котру бажаєте видалити" + +#: ../../server/eit/commands/notice.py:248 +msgid "Are you sure you want to remove this?" +msgstr "Ви впевнені, що бажаєте видалити?" + +#: ../../server/eit/commands/notice.py:352 +msgid "Exit/Commit" +msgstr "Вийти/Підтвердити" + +#: ../../server/eit/commands/notice.py:375 +#, fuzzy +msgid "manage repository notice-board" +msgstr "Отримати дошку повідомлень репозиторію" + +#: ../../server/eit/commands/merge.py:45 +#, fuzzy +msgid "repository branch" +msgstr "репозиторій" + +#: ../../server/eit/commands/merge.py:47 +#, fuzzy +msgid "work inside given repository" +msgstr "Пропускаю репозиторій" + +#: ../../server/eit/commands/merge.py:74 +msgid "merge branch into current" +msgstr "" + +#: ../../server/eit/commands/repack.py:42 +#, fuzzy +msgid "repack to given repository" +msgstr "увімкнути обраний репозиторій" + +#: ../../server/eit/commands/repack.py:59 +#, fuzzy +msgid "rebuild packages in repository" +msgstr "Встановлені пакунки" + +#: ../../server/eit/commands/commit.py:57 #, fuzzy msgid "selectively pick changes" msgstr "Вилучення обраних пакунків" -#: ../../server/eit/commands/commit.py:63 -msgid "no stupid questions" -msgstr "" +#: ../../server/eit/commands/commit.py:95 +msgid "Cannot match" +msgstr "Неможливо порівняти" -#: ../../server/eit/commands/commit.py:167 +#: ../../server/eit/commands/commit.py:115 +msgid "No valid packages to repackage." +msgstr "Немає коректних пакунків до перепакування" + +#: ../../server/eit/commands/commit.py:121 +msgid "Scanning database for differences" +msgstr "Сканую базу даних на відмінності" + +#: ../../server/eit/commands/commit.py:145 #, fuzzy msgid "Invalid package" msgstr "Встановлення пакунку" -#: ../../server/eit/commands/commit.py:181 +#: ../../server/eit/commands/commit.py:156 +#, fuzzy +msgid "Zarro thinggz to do" +msgstr "І ще дещо зробити" + +#: ../../server/eit/commands/commit.py:163 #, fuzzy msgid "These would be marked as injected" msgstr "додано" -#: ../../server/eit/commands/commit.py:191 +#: ../../server/eit/commands/commit.py:175 msgid "Do it now ?" msgstr "" -#: ../../server/eit/commands/commit.py:202 +#: ../../server/eit/commands/commit.py:186 #, fuzzy msgid "Transforming" msgstr "Трансформування з бази даних" -#: ../../server/eit/commands/commit.py:206 +#: ../../server/eit/commands/commit.py:191 #, fuzzy -msgid "Transform complete" -msgstr "Трансформація даних бази завершена" +msgid "Action completed" +msgstr "додавання завершено" -#: ../../server/eit/commands/commit.py:222 +#: ../../server/eit/commands/commit.py:202 +msgid "expired" +msgstr "протермінований" + +#: ../../server/eit/commands/commit.py:209 #, fuzzy -msgid "What packages do you want to remove ?" -msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" +msgid "Select packages for removal" +msgstr "Пошук додаткових пакунків до видалення" -#: ../../server/eit/commands/commit.py:236 +#: ../../server/eit/commands/commit.py:216 +msgid "Remove this package?" +msgstr "Видалити пакунки" + +#: ../../server/eit/commands/commit.py:223 #, fuzzy msgid "These would be removed from repository" msgstr "Підходящі до видалення з бази даних репозиторію" -#: ../../server/eit/commands/commit.py:260 +#: ../../server/eit/commands/commit.py:248 #, fuzzy -msgid "What packages do you want to add ?" -msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" +msgid "Select packages to add" +msgstr "Деякі пакунки замасковані" -#: ../../server/eit/commands/commit.py:275 +#: ../../server/eit/commands/commit.py:256 +msgid "Add this package?" +msgstr "Додати цей пакунок?" + +#: ../../server/eit/commands/commit.py:264 #, fuzzy msgid "These would be added or updated" msgstr "Вони будуть додані в системну базу даних" -#: ../../server/eit/commands/commit.py:367 +#: ../../server/eit/commands/commit.py:297 +#, fuzzy +msgid "warning" +msgstr "Обережно" + +#: ../../server/eit/commands/commit.py:304 +msgid "Would you like to package them now ?" +msgstr "Бажаєте запакувати їх зараз?" + +#: ../../server/eit/commands/commit.py:305 +msgid "inside" +msgstr "всередині" + +#: ../../server/eit/commands/commit.py:318 +msgid "Compressing packages" +msgstr "Стиснення пакунків" + +#: ../../server/eit/commands/commit.py:332 +msgid "Ignoring broken Spm entry, please recompile it" +msgstr "Пропускаємо зіпсований запис Spm, будь-ласка, налаштуйте його повторно" + +#: ../../server/eit/commands/commit.py:339 +msgid "Nothing to do, check later." +msgstr "Робити більше нічого, перевірте згодом." + +#: ../../server/eit/commands/commit.py:354 +msgid "Entries handled" +msgstr "обслуговані записи" + +#: ../../server/eit/commands/commit.py:364 #, fuzzy msgid "commit changes to repository" msgstr "Встановлені пакунки" +#: ../../server/eit/commands/log.py:58 +#, fuzzy +msgid "log is not available" +msgstr "недоступний" + +#: ../../server/eit/commands/log.py:72 +#, fuzzy +msgid "show log for repository" +msgstr "Пропускаю репозиторій" + +#: ../../server/eit/commands/match.py:94 +#, fuzzy +msgid "match packages in repositories" +msgstr "порівняти пакунки в репозиторіях" + +#: ../../server/eit/commands/add.py:42 +#, fuzzy +msgid "add to given repository" +msgstr "увімкнути обраний репозиторій" + +#: ../../server/eit/commands/add.py:62 +#, fuzzy +msgid "commit to repository the provided packages" +msgstr "Завантажую пакунки згідно наданих репозиторієм ключових слів" + +#: ../../server/eit/commands/lock.py:54 +msgid "affect entropy clients only" +msgstr "" + +#: ../../server/eit/commands/lock.py:57 +#, fuzzy +msgid "show current status" +msgstr "відобразити поточний статус блокування" + +#: ../../server/eit/commands/lock.py:85 +#, fuzzy +msgid "Mirrors status" +msgstr "Таблиця додаткових репозиторіїв" + +#: ../../server/eit/commands/lock.py:110 +#, fuzzy +msgid "server" +msgstr "Сервер" + +#: ../../server/eit/commands/lock.py:125 +msgid "client" +msgstr "" + +#: ../../server/eit/commands/lock.py:157 +#, fuzzy +msgid "lock repository" +msgstr "В репозиторій" + +#: ../../server/eit/commands/lock.py:180 +#, fuzzy +msgid "unlock repository" +msgstr "В репозиторії" + +#: ../../server/eit/commands/revgraph.py:56 +#: ../../server/eit/commands/graph.py:56 +msgid "show system packages, build deps, circular deps" +msgstr "" + +#: ../../server/eit/commands/revgraph.py:92 +#, fuzzy +msgid "show reverse dependency graph for packages" +msgstr "відобразити, які пакунки залежать від даних атомів" + +#: ../../server/eit/commands/cleanup.py:67 +#, fuzzy +msgid "clean expired packages from a repository" +msgstr "Підрахунок наявних пакунків для" + +#: ../../server/eit/commands/vacuum.py:52 +msgid "expired since how many days, default: 0" +msgstr "" + +#: ../../server/eit/commands/vacuum.py:70 +#, fuzzy +msgid "Removing unavailable packages overriding defaults" +msgstr "Підрахунок наявних пакунків для" + +#: ../../server/eit/commands/vacuum.py:74 +#, fuzzy +msgid "Users with old repositories will need to update" +msgstr "Все репозиторії вже оновлені до останньої версії." + +#: ../../server/eit/commands/vacuum.py:90 +#, fuzzy +msgid "clean expired/removed packages from repository" +msgstr "Підрахунок наявних пакунків для" + +#: ../../server/eit/commands/files.py:91 +#, fuzzy +msgid "files found" +msgstr "файл не знайдено" + +#: ../../server/eit/commands/files.py:100 +#, fuzzy +msgid "show files owned by packages" +msgstr "показує файли, що належать даним атомам" + +#: ../../server/eit/commands/remove.py:48 ../../server/eit/commands/deps.py:46 +#: ../../server/eit/commands/inject.py:46 +#, fuzzy +msgid "inject into given repository" +msgstr "увімкнути обраний репозиторій" + +#: ../../server/eit/commands/remove.py:51 +#, fuzzy +msgid "do not include reverse dependencies" +msgstr "Неможливо знайти необхідні залежності" + +#: ../../server/eit/commands/remove.py:123 +#, fuzzy +msgid "remove packages from repository" +msgstr "перемістити пакунки в інший репозиторій" + +#: ../../server/eit/commands/deps.py:81 +msgid "package dependencies" +msgstr "залежності пакунків" + +#: ../../server/eit/commands/deps.py:96 +msgid "No dependencies" +msgstr "Без залежностей" + +#: ../../server/eit/commands/deps.py:154 +#, fuzzy +msgid "Dependency type" +msgstr "Тест залежностей" + +#: ../../server/eit/commands/deps.py:160 +#, fuzzy +msgid "Select a dependency type for" +msgstr "ручні залежності для" + +#: ../../server/eit/commands/deps.py:185 +#, fuzzy +msgid "Dependencies editor" +msgstr "Тест залежностей" + +#: ../../server/eit/commands/deps.py:195 +#, fuzzy +msgid "Confirm ?" +msgstr "Підтвердити" + +#: ../../server/eit/commands/deps.py:219 +#, fuzzy +msgid "dependencies updated successfully" +msgstr "залежності, що призначаються власноруч, вдало додані" + +#: ../../server/eit/commands/deps.py:230 +#, fuzzy +msgid "edit dependencies for packages in repository" +msgstr "Встановлені пакунки" + +#: ../../server/eit/commands/cp.py:58 +#, fuzzy +msgid "package dependency" +msgstr "залежності пакунків" + +#: ../../server/eit/commands/cp.py:81 +msgid "source equals destination" +msgstr "" + +#: ../../server/eit/commands/cp.py:110 +#, fuzzy +msgid "Considering all the packages" +msgstr "Налаштування пакунку" + +#: ../../server/eit/commands/cp.py:134 +msgid "copy packages from a repository to another" +msgstr "копіювати пакунки в інший репозиторій" + +#: ../../server/eit/commands/graph.py:92 +#, fuzzy +msgid "show dependency graph for packages" +msgstr "Розпаковую пакунок залежностей" + +#: ../../server/eit/commands/key.py:50 +#, fuzzy +msgid "execute action" +msgstr "пришвидшити виконання" + +#: ../../server/eit/commands/key.py:54 +#, fuzzy +msgid "create keypair for repository and packages" +msgstr "Спробуйте оновити репозиторії і повторіть спробу" + +#: ../../server/eit/commands/key.py:60 +#, fuzzy +msgid "delete keypair (and signatures) from repository" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/key.py:66 +#, fuzzy +msgid "show keypair status for repository" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/key.py:72 +#, fuzzy +msgid "sign packages in repository using current keypair" +msgstr "Встановлені пакунки" + +#: ../../server/eit/commands/key.py:78 +#, fuzzy +msgid "import keypair, bind to given repository" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/key.py:83 ../../server/eit/commands/key.py:104 +msgid "private key path" +msgstr "" + +#: ../../server/eit/commands/key.py:86 ../../server/eit/commands/key.py:95 +#, fuzzy +msgid "public key path" +msgstr "Імена пакунків" + +#: ../../server/eit/commands/key.py:90 +#, fuzzy +msgid "export the repository public key to file" +msgstr "віддалену базу даних несподівано було заблоковано." + +#: ../../server/eit/commands/key.py:99 +msgid "export the repository private key to file" +msgstr "" + +#: ../../server/eit/commands/key.py:121 +msgid "GPG interface loaded, home directory" +msgstr "" + +#: ../../server/eit/commands/key.py:146 +#, fuzzy +msgid "Creating keys for repository" +msgstr "Хибний репозиторій" + +#: ../../server/eit/commands/key.py:150 +#, fuzzy +msgid "Another key already exists for repository" +msgstr "увійшов до головного репозиторію" + +#: ../../server/eit/commands/key.py:174 +#, fuzzy +msgid "Insert e-mail" +msgstr "Введіть URL" + +#: ../../server/eit/commands/key.py:176 +msgid "Insert expiration days (0=no expiration)" +msgstr "" + +#: ../../server/eit/commands/key.py:178 +msgid "Insert passphrase (empty=no passphrase)" +msgstr "" + +#: ../../server/eit/commands/key.py:182 +#, fuzzy +msgid "Repository GPG keypair creation" +msgstr "Інформація репозиторіїв" + +#: ../../server/eit/commands/key.py:198 +msgid "Produced GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:204 +#, fuzzy +msgid "Now you should sign all the packages in it" +msgstr "Вам слід встановити їх якомога раніше" + +#: ../../server/eit/commands/key.py:211 +msgid "Generate a revoke key and store it in a safe place" +msgstr "" + +#: ../../server/eit/commands/key.py:221 +msgid "You may want to send your keys to a key server" +msgstr "" + +#: ../../server/eit/commands/key.py:242 +#, fuzzy +msgid "Deleting keys for repository" +msgstr "Хибний репозиторій" + +#: ../../server/eit/commands/key.py:246 +#, fuzzy +msgid "No keys available for given repository" +msgstr "увімкнути обраний репозиторій" + +#: ../../server/eit/commands/key.py:253 +#, fuzzy +msgid "Are you really sure?" +msgstr "Ви готові?" + +#: ../../server/eit/commands/key.py:261 ../../server/eit/commands/key.py:295 +#, fuzzy +msgid "Keys metadata not available for" +msgstr "недоступний" + +#: ../../server/eit/commands/key.py:275 +msgid "Deleted GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:303 +#, fuzzy +msgid "GPG information for repository" +msgstr "використання пакунків у репозиторії" + +#: ../../server/eit/commands/key.py:325 +#, fuzzy +msgid "Public key identifier" +msgstr "Імена пакунків" + +#: ../../server/eit/commands/key.py:326 +msgid "Public key fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:327 +msgid "Key size" +msgstr "" + +#: ../../server/eit/commands/key.py:328 +#: ../../sulfur/src/sulfur/sulfur.glade.h:48 +msgid "Creation date" +msgstr "Дата створення" + +#: ../../server/eit/commands/key.py:329 +msgid "Expires on" +msgstr "" + +#: ../../server/eit/commands/key.py:366 +#, fuzzy +msgid "Importing keypair" +msgstr "Хибний репозиторій" + +#: ../../server/eit/commands/key.py:372 +#, fuzzy +msgid "Another keypair already exists" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/key.py:385 +msgid "Imported GPG key with fingerprint" +msgstr "" + +#: ../../server/eit/commands/key.py:391 +#, fuzzy +msgid "Now sign all the packages in it" +msgstr "Вам слід встановити їх якомога раніше" + +#: ../../server/eit/commands/key.py:436 +#, fuzzy +msgid "Exporting private key for repository" +msgstr "Репозиторій призначення" + +#: ../../server/eit/commands/key.py:440 +#, fuzzy +msgid "Exporting public key for repository" +msgstr "Сортувати за репозиторієм" + +#: ../../server/eit/commands/key.py:445 +#, fuzzy +msgid "No keypair available for repository" +msgstr "відсутня в списках в поточній базі даних репозиторіїв!!" + +#: ../../server/eit/commands/key.py:453 +msgid "Keypair is EXPIRED for repository" +msgstr "" + +#: ../../server/eit/commands/key.py:474 +#, fuzzy +msgid "Unable to export GPG key for repository" +msgstr "Хибний репозиторій" + +#: ../../server/eit/commands/key.py:483 +#, fuzzy +msgid "Exported GPG key for repository" +msgstr "Хибний репозиторій" + +#: ../../server/eit/commands/key.py:496 +#, fuzzy +msgid "manage repository GPG keys" +msgstr "керувати репозиторієм" + +#: ../../server/eit/commands/inject.py:44 +#, fuzzy +msgid "package paths" +msgstr "Атоми пакунків" + +#: ../../server/eit/commands/inject.py:72 +#, fuzzy +msgid "no such file or directory" +msgstr "Неможливо встановити директорію кеша" + +#: ../../server/eit/commands/inject.py:85 +#, fuzzy +msgid "unsupported extension" +msgstr "не підтримується" + +#: ../../server/eit/commands/inject.py:91 +#, fuzzy +msgid "no valid package paths" +msgstr "Встановлення пакунку" + +#: ../../server/eit/commands/inject.py:114 +#, fuzzy +msgid "inject package files into repository" +msgstr "знайти пакунки в репозиторіях" + +#: ../../server/eit/commands/branch.py:54 +#, fuzzy +msgid "switch to given branch" +msgstr "Неможливо перемкнути гілку" + +#: ../../server/eit/commands/branch.py:59 +#, fuzzy +msgid "from branch" +msgstr "гілка" + +#: ../../server/eit/commands/branch.py:89 +#: ../../server/eit/commands/branch.py:98 +#, fuzzy +msgid "Invalid branch" +msgstr "Хибна дія." + +#: ../../server/eit/commands/branch.py:118 +msgid "would be copied to branch" +msgstr "" + +#: ../../server/eit/commands/branch.py:171 +#, fuzzy +msgid "manage repository branches" +msgstr "керувати репозиторієм" + +#: ../../server/eit/commands/repo.py:46 +#, fuzzy +msgid "show current repository" +msgstr "Поточний репозиторій" + #: ../../sulfur/src/sulfur/views.py:92 ../../sulfur/src/sulfur/views.py:152 -#: ../../sulfur/src/sulfur/views.py:2801 +#: ../../sulfur/src/sulfur/views.py:2796 #: ../../sulfur/src/sulfur/dialogs.py:2514 #: ../../sulfur/src/sulfur/dialogs.py:2747 #: ../../sulfur/src/sulfur/dialogs.py:2758 @@ -7544,125 +7471,131 @@ msgstr "Є неповні набори пакунків, продовжуйте msgid "Application" msgstr "Програми" -#: ../../sulfur/src/sulfur/views.py:2039 +#: ../../sulfur/src/sulfur/views.py:2034 #: ../../sulfur/src/sulfur/dialogs.py:1346 #, fuzzy msgid "Successfully logged in." msgstr "Успішно ввійшли в систему як" -#: ../../sulfur/src/sulfur/views.py:2049 +#: ../../sulfur/src/sulfur/views.py:2044 #: ../../sulfur/src/sulfur/dialogs.py:2090 #, fuzzy msgid "Unsupported Service" msgstr "не підтримується" -#: ../../sulfur/src/sulfur/views.py:2088 +#: ../../sulfur/src/sulfur/views.py:2083 #: ../../sulfur/src/sulfur/dialogs.py:1373 msgid "Vote registered successfully" msgstr "Голос зареєстрований вдало" -#: ../../sulfur/src/sulfur/views.py:2092 +#: ../../sulfur/src/sulfur/views.py:2087 msgid "Error registering vote" msgstr "Помилка при реєстрації голосу" -#: ../../sulfur/src/sulfur/views.py:2093 +#: ../../sulfur/src/sulfur/views.py:2088 #: ../../sulfur/src/sulfur/dialogs.py:1376 #, fuzzy msgid "Already voted" msgstr "Вже видалено" -#: ../../sulfur/src/sulfur/views.py:2713 +#: ../../sulfur/src/sulfur/views.py:2708 #: ../../sulfur/src/sulfur/__init__.py:460 #: ../../sulfur/src/sulfur/sulfur.glade.h:14 msgid "Applications" msgstr "Програми" -#: ../../sulfur/src/sulfur/views.py:2751 +#: ../../sulfur/src/sulfur/views.py:2746 #, fuzzy msgid "Applications to remove" msgstr "Програми поза групами" -#: ../../sulfur/src/sulfur/views.py:2756 +#: ../../sulfur/src/sulfur/views.py:2751 #, fuzzy msgid "Applications to downgrade" msgstr "пакунки до оновлення до старішої версії" -#: ../../sulfur/src/sulfur/views.py:2761 +#: ../../sulfur/src/sulfur/views.py:2756 #, fuzzy msgid "Applications to install" msgstr "Опції програми" -#: ../../sulfur/src/sulfur/views.py:2766 +#: ../../sulfur/src/sulfur/views.py:2761 #, fuzzy msgid "Applications to update" msgstr "Оновлення програм" -#: ../../sulfur/src/sulfur/views.py:2771 +#: ../../sulfur/src/sulfur/views.py:2766 #, fuzzy msgid "Applications to reinstall" msgstr "Опції програми" -#: ../../sulfur/src/sulfur/views.py:2840 +#: ../../sulfur/src/sulfur/views.py:2835 msgid "Proposed" msgstr "Запропоновано" -#: ../../sulfur/src/sulfur/views.py:2847 +#: ../../sulfur/src/sulfur/views.py:2842 msgid "Destination" msgstr "Призначення" -#: ../../sulfur/src/sulfur/views.py:2854 +#: ../../sulfur/src/sulfur/views.py:2849 msgid "Rev." msgstr "Перевірка" -#: ../../sulfur/src/sulfur/views.py:2910 +#: ../../sulfur/src/sulfur/views.py:2905 #, fuzzy msgid "Security id." msgstr "Безпека" -#: ../../sulfur/src/sulfur/views.py:2918 +#: ../../sulfur/src/sulfur/views.py:2913 #, fuzzy msgid "Application name" msgstr "Програми" -#: ../../sulfur/src/sulfur/views.py:2996 +#: ../../sulfur/src/sulfur/views.py:2991 #: ../../sulfur/src/sulfur/packages.py:1120 #, fuzzy msgid "Please wait, loading..." msgstr "Почекайте, будь-ласка" -#: ../../sulfur/src/sulfur/views.py:2997 +#: ../../sulfur/src/sulfur/views.py:2992 #, fuzzy msgid "Advisories are being loaded" msgstr "Репозиторії оновлюються" -#: ../../sulfur/src/sulfur/views.py:3054 +#: ../../sulfur/src/sulfur/views.py:3049 msgid "No advisories" msgstr "Немає повідомлень" -#: ../../sulfur/src/sulfur/views.py:3055 +#: ../../sulfur/src/sulfur/views.py:3050 msgid "There are no items to show" msgstr "Немає що відображати" -#: ../../sulfur/src/sulfur/views.py:3081 +#: ../../sulfur/src/sulfur/views.py:3076 msgid "Filename" msgstr "Файл" -#: ../../sulfur/src/sulfur/views.py:3102 +#: ../../sulfur/src/sulfur/views.py:3097 #, fuzzy msgid "Cannot disable repository!" msgstr "встановити репозиторій за замовчуванням" -#: ../../sulfur/src/sulfur/views.py:3134 +#: ../../sulfur/src/sulfur/views.py:3129 msgid "Active" msgstr "Активний" -#: ../../sulfur/src/sulfur/views.py:3144 +#: ../../sulfur/src/sulfur/views.py:3139 #: ../../sulfur/src/sulfur/sulfur.glade.h:271 msgid "Update" msgstr "Оновити" +#. Setup revision column +#: ../../sulfur/src/sulfur/views.py:3147 +#: ../../sulfur/src/sulfur/sulfur.glade.h:209 +msgid "Revision" +msgstr "Перевірка" + #. Setup reponame & repofile column's -#: ../../sulfur/src/sulfur/views.py:3155 +#: ../../sulfur/src/sulfur/views.py:3150 msgid "Repository Identifier" msgstr "Ім'я репозиторію" @@ -8079,6 +8012,10 @@ msgstr "Деякі пакунки замасковані" msgid "Masked package" msgstr "замаскований пакунок" +#: ../../sulfur/src/sulfur/dialogs.py:2441 +msgid "Enabled" +msgstr "Увімкнено" + #: ../../sulfur/src/sulfur/dialogs.py:2637 msgid "Please confirm the actions above" msgstr "Будь-ласка, підтвердіть вищевказані дії" @@ -10164,15 +10101,487 @@ msgstr "повідомник про оновлення додатків Magneto" msgid "_Load Package Manager" msgstr "_Завантажте пакунковий менеджер" +#~ msgid "handles community-side features" +#~ msgstr "керує функціями, пов'язаними зі спільнотою" + +#~ msgid "community repositories management functions" +#~ msgstr "функції керуваннярепозиторіями спільноти" + +#~ msgid "scan the System looking for newly compiled packages" +#~ msgstr "пошук у системі нещодавно створених пакунків" + +#~ msgid "analyze the Entropy Store directory directly" +#~ msgstr "проаналізувати директорію Entropy Store навпростець" + +#~ msgid "repackage the specified atoms" +#~ msgstr "перепакувати дані атоми" + +#~ msgid "do not ask anything except critical things" +#~ msgstr "не запитувати нічого, окрім критичних моментів" + +#~ msgid "manage only the specified atoms" +#~ msgstr "керувати лише даними атомами" + +#~ msgid "run in interactive mode (asking things one by one)" +#~ msgstr "виконати в інтерактивному режимі (запитувати усі моменти)" + +#~ msgid "" +#~ "add binary packages to repository w/o affecting scopes (multipackages)" +#~ msgstr "" +#~ "додати бінарні пакунки в репозиторій, окрім діючих обмежень (для " +#~ "мультипакунків)" + +#~ msgid "community repositories mirrors management functions" +#~ msgstr "функції керування дзеркалами репозиторіїв співтовариства" + +#~ msgid "sync packages, database and also do some tidy" +#~ msgstr "синхронізувати пакунки, базу даних, і взагалі - навести лад" + +#~ msgid "sync all the configured repositories" +#~ msgstr "синхронізувати усі налаштовані репозиторії" + +#~ msgid "sync packages across primary mirrors" +#~ msgstr "синхронізувати пакунки з головними дзеркалами" + +#~ msgid "sync the current repository database across primary mirrors" +#~ msgstr "" +#~ "синхронізувати поточну базу даних репозиторію з головними дзеркалами" + +#~ msgid "lock the current repository database (server-side)" +#~ msgstr "заблокувати поточну базу даних репозиторію (для сервера)" + +#~ msgid "unlock the current repository database (server-side)" +#~ msgstr "розблокувати поточну базу даних репозиторію (для сервера)" + +#~ msgid "lock the current repository database (client-side)" +#~ msgstr "заблокувати поточну базу даних репозиторію (для клієнта)" + +#~ msgid "unlock the current repository database (client-side)" +#~ msgstr "розблокувати поточну базу даних репозиторію (для клієнта)" + +#~ msgid "remove binary packages not in repositories and expired" +#~ msgstr "" +#~ "видалити бінарні пакунки, яких немає в репозиторії і термін зберігання " +#~ "якихминув" + +#, fuzzy +#~ msgid "" +#~ "clean unavailable packages from mirrors (similar to tidy, but more nazi)" +#~ msgstr "Підрахунок наявних пакунків для" + +#, fuzzy +#~ msgid "(re)initialize the current repository database" +#~ msgstr "(повторно) обнулити поточну базу даних репозиторію" + +#~ msgid "do not refill database using packages on mirrors" +#~ msgstr "не доповнювати базу даних пакунками з дзеркал" + +#, fuzzy +#~ msgid "(re)create the database for the specified repository" +#~ msgstr "(повторно) створити базу даних для зазначеного репозиторію" + +#~ msgid "manually force a revision bump for the current repository database" +#~ msgstr "" +#~ "власноруч прискорити перевірку версії поточної бази даних репозиторію" + +#~ msgid "synchronize the database" +#~ msgstr "синхронізувати базу даних" + +#~ msgid "flush back old branches packages to current branch" +#~ msgstr "змінити пакунки старих гілок на пакунки нової гілки" + +#~ msgid "remove the provided atoms from the current repository database" +#~ msgstr "видалити дані атоми з поточної бази даних репозиторію" + +#~ msgid "remove the provided injected atoms (all if no atom specified)" +#~ msgstr "видалити дані завантажені атоми (всі, якщо не обрано жодногоатома)" + +#~ msgid "create an empty repository database in the provided path" +#~ msgstr "створити порожню базу даних репозиторію за вказаним шляхом" + +#~ msgid "switch to the specified branch the provided atoms (or world)" +#~ msgstr "перемкнути на вказану гілку дані атоми (або всі)" + +#~ msgid "verify remote integrity of the provided atoms (or world)" +#~ msgstr "віддалено перевірити цілісність даних атомів (або всіх)" + +#~ msgid "backup current repository database" +#~ msgstr "створити резервну копію поточної бази даних репозиторію" + +#~ msgid "restore a previously backed-up repository database" +#~ msgstr "відновити попередньо створену резервну копію бази даних репозиторію" + +#~ msgid "enable the specified repository" +#~ msgstr "увімкнути обраний репозиторій" + +#~ msgid "disable the specified repository" +#~ msgstr "вимкнути обраний репозиторій" + +#~ msgid "show the current Server Interface status" +#~ msgstr "відобразити поточний статус Серверного Інтерфейсу" + +#, fuzzy +#~ msgid "handle packages dependencies" +#~ msgstr "власноруч керувати залежностями пакунків" + +#~ msgid "clone a package inside a repository assigning it an arbitrary tag" +#~ msgstr "" +#~ "клонувати пакунок всередині репозиторію, описуючи його довільним тегом" + +#~ msgid "pulls dependencies in" +#~ msgstr "встановити залежності" + +#~ msgid "set the default repository" +#~ msgstr "встановити репозиторій за замовчуванням" + +#, fuzzy +#~ msgid "show currently configured keys information for given repositories" +#~ msgstr "Вірно налаштовані репозиторії" + +#, fuzzy +#~ msgid "export public key of given repository" +#~ msgstr "Сортувати за репозиторієм" + +#, fuzzy +#~ msgid "export private key of given repository" +#~ msgstr "Репозиторій призначення" + +#~ msgid "do some searches into community repository databases" +#~ msgstr "пошукати в базі даних репозиторіїв співтовариства" + +#~ msgid "show from what package the provided files belong" +#~ msgstr "відобразити, якому пакункові належать дані файли" + +#~ msgid "show what packages depend on the provided atoms" +#~ msgstr "відобразити, які пакунки залежать від даних атомів" + +#~ msgid "list all the packages in the default repository" +#~ msgstr "показати всі пакунки у репозиторії за замовчуванням" + +#~ msgid "search packages inside the default repository database" +#~ msgstr "шукати пакунки в базі даних репозиторію за замовчуванням" + +#~ msgid "show packages owning the specified tags" +#~ msgstr "відобразити пакунки з певними тегами" + +#, fuzzy +#~ msgid "show installed packages owning the specified revisions" +#~ msgstr "відобразити пакунки з певними тегами" + +#~ msgid "source package manager functions" +#~ msgstr "функції пакункового менеджера джерела" + +#~ msgid "compilation function" +#~ msgstr "функція компіляції" + +#~ msgid "compile packages belonging to the provided categories" +#~ msgstr "компілювати пакунки, що стосуються даних категорій" + +#~ msgid "just list packages" +#~ msgstr "відобразити лише перелік пакунків" + +#~ msgid "do not pull old package slots" +#~ msgstr "не заповнювати слоти старих пакунків" + +#~ msgid "compile packages in provided package set names" +#~ msgstr "компілювати пакунки з іменами даного набору пакунків" + +#~ msgid "rebuild everything" +#~ msgstr "перебудувати всі" + +#~ msgid "run database update if all went fine" +#~ msgstr "виконати оновлення бази даних, якщо все пройшло добре" + +#~ msgid "run mirror sync if all went fine" +#~ msgstr "виконати синхронізацію з дзеркалом, якщо все гаразд" + +#~ msgid "scan orphaned packages on SPM" +#~ msgstr "шукати осиротілі пакунки в SPM" + +#~ msgid "notice board handling functions" +#~ msgstr "функції обслуговування дошки повідомлень" + +#~ msgid "add a news item to the notice board" +#~ msgstr "додати новину на дошку повідомлень" + +#~ msgid "remove a news item from the notice board" +#~ msgstr "видалити новину з дошки повідомлень" + +#~ msgid "read the current notice board" +#~ msgstr "прочитати актуальну дошку повідомлень" + +#~ msgid "look for unsatisfied dependencies across community repositories" +#~ msgstr "шукати недотримані залежності в репозиторіях співтовариства" + +#~ msgid "verify the integrity of local package files" +#~ msgstr "перевірити цілісність файлів локального пакунку" + +#~ msgid "You need to install sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Вам необхідно встановити sys-apps/entropy-server :) Ну-ж бо, зробіть це!" + +#~ msgid "You need to install/update sys-apps/entropy-server. :-) Do it !" +#~ msgstr "" +#~ "Вам необхідно встановити/оновити sys-apps/entropy-server :-) Ну-ж бо, " +#~ "зробітьце!" + +#, fuzzy +#~ msgid "show current repositories status" +#~ msgstr "відобразити статус репозиторіїв" + +#~ msgid "do some searches into repository databases" +#~ msgstr "пошукайте в базах даних репозиторію" + +#, fuzzy +#~ msgid "match package dependency inside the default repository database" +#~ msgstr "шукати пакунки в базі даних репозиторію за замовчуванням" + +#, fuzzy +#~ msgid "(re)initialize the current repository" +#~ msgstr "(повторно) обнулити поточну базу даних репозиторію" + +#~ msgid "switch to the specified branch the repository" +#~ msgstr "перемкнути репозиторій на обрану гілку" + +#, fuzzy +#~ msgid "verify remote integrity of the provided atoms" +#~ msgstr "віддалено перевірити цілісність даних атомів (або всіх)" + +#~ msgid "clone a package assigning it an arbitrary tag" +#~ msgstr "клонувати пакунок з присвоєнням йому довільного тега" + +#, fuzzy +#~ msgid "mask given package in given repository" +#~ msgstr "використання пакунків у репозиторії" + +#, fuzzy +#~ msgid "unmask given packages in given repository" +#~ msgstr "використання пакунків у репозиторії" + +#, fuzzy +#~ msgid "scan orphaned packages in SPM" +#~ msgstr "шукати осиротілі пакунки в SPM" + +#, fuzzy +#~ msgid "scan new packages available in SPM" +#~ msgstr "шукати осиротілі пакунки в SPM" + +#, fuzzy +#~ msgid "look for missing libraries (scan system)" +#~ msgstr "шукати зіпсовані бібліотеки" + +#~ msgid "remove downloaded packages and clean temp. directories)" +#~ msgstr "видалити завантажені пакунки і очистити тимчасові теки" + +#~ msgid "Starting to sync data across mirrors (packages/database)" +#~ msgstr "" +#~ "Початок синхронізації інформації між дзеркалами (пакунки/база даних)" + +#, fuzzy +#~ msgid "Should I continue with the tidy procedure ?" +#~ msgstr "Чи слід мені продовжувати при порожній процедурі?" + +#~ msgid "Notice text" +#~ msgstr "Текст повідомлення" + +#~ msgid "Relevant URL (optional)" +#~ msgstr "Важливе посилання (додатково)" + +#~ msgid "Repository notice board, new item insertion" +#~ msgstr "Дошка повідомлень репозиторіїв, введення нового запису" + +#~ msgid "Starting to lock mirrors databases" +#~ msgstr "Початок блокування баз даних дзеркал" + +#~ msgid "A problem occured on at least one mirror" +#~ msgstr "Виникла проблема з останнім дзеркалом" + +#, fuzzy +#~ msgid "Repositories lock complete" +#~ msgstr "Відновлення завершене" + +#~ msgid "Starting to unlock mirrors databases" +#~ msgstr "Починаю розблокування баз даних дзеркал" + +#, fuzzy +#~ msgid "Repositories unlock complete" +#~ msgstr "Відновлення завершене" + +#~ msgid "Starting to lock download mirrors databases" +#~ msgstr "Початок блокування завантаження баз даних дзеркал" + +#~ msgid "Download mirrors lock complete" +#~ msgstr "Блокування завантаження дзеркал завершено" + +#~ msgid "Starting to unlock download mirrors databases" +#~ msgstr "Починаю розблокування завантаження баз даних дзеркал" + +#~ msgid "Download mirrors unlock complete" +#~ msgstr "Розблокування завантаження дзеркал завершено" + +#~ msgid "DATABASE" +#~ msgstr "БАЗА ДАНИХ" + +#~ msgid "DOWNLOAD" +#~ msgstr "ЗАВАНТАЖЕННЯ" + +#, fuzzy +#~ msgid "Syncing repository" +#~ msgstr "в репозиторіях" + +#, fuzzy +#~ msgid "Repositories sync error, cannot continue." +#~ msgstr "Помилки синхронізації бази даних, неможливо продовжити" + +#, fuzzy +#~ msgid "Local revision currently at" +#~ msgstr "Поточна локальна версія бази даних -" + +#~ msgid "choose on what branch operating" +#~ msgstr "оберіть, з якою гілкою працювати" + +#~ msgid "package repositories handling functions" +#~ msgstr "функції обробки пакунків репозиторіїв" + +#~ msgid "sync package repositories across primary mirrors" +#~ msgstr "синхронізація пакунків репозиторіїв з основними дзеркалами" + +#, fuzzy +#~ msgid "repository handling functions" +#~ msgstr "функції обробки пакунків репозиторіїв" + +#~ msgid "no package specified." +#~ msgstr "жодного пакунку не обрано." + +#~ msgid "Enabling" +#~ msgstr "Увімкнення" + +#~ msgid "already enabled" +#~ msgstr "вже увімкнено" + +#~ msgid "Disabling" +#~ msgstr "Вимкнення" + +#~ msgid "Disabled" +#~ msgstr "Вимкнений" + +#~ msgid "already disabled" +#~ msgstr "вже вимкнено" + +#, fuzzy +#~ msgid "Invalid syntax." +#~ msgstr "Помилковий рядок." + +#, fuzzy +#~ msgid "No valid repository specified." +#~ msgstr "Жодного коректного репозиторію не обрано." + +#, fuzzy +#~ msgid "No packages selected." +#~ msgstr "Жодного пакунку не обрано" + +#, fuzzy +#~ msgid "Masking" +#~ msgstr "Маскування пакунку" + +#, fuzzy +#~ msgid "Unmasking" +#~ msgstr "Розпакування" + +#~ msgid "Matching packages to remove" +#~ msgstr "Порівняння пакунків до видалення" + +#~ msgid "Not enough parameters" +#~ msgstr "Недостатньо параметрів" + +#~ msgid "These are the packages that would be removed from the database" +#~ msgstr "Ось пакунки, що будуть вилучені з бази даних" + +#~ msgid "Removing selected packages" +#~ msgstr "Вилучення обраних пакунків" + +#~ msgid "Packages removed. To remove binary packages, run activator." +#~ msgstr "" +#~ "Пакунки вилучені. Щоб видалити бінарні пакунки, увімкніть активатор." + +#~ msgid "These are the injected packages pulled in for removal" +#~ msgstr "Тут введені пакунки, відібрані до видалення" + +#~ msgid "Switching branch, be sure to have your packages in sync." +#~ msgstr "При перемиканні гілки, будьте певні, що ваші пакунки синхронізовані" + +#~ msgid "Collecting packages that would be marked" +#~ msgstr "Підрахунок пакунків, що будуть позначені" + +#~ msgid "These are the packages that would be marked" +#~ msgstr "Ось пакунки, що будуть позначені" + +#~ msgid "No valid repositories specified." +#~ msgstr "Жодного коректного репозиторію не обрано." + +#~ msgid "Invalid repositories specified." +#~ msgstr "обрані некоректні репозиторії." + +#~ msgid "Creating empty database to" +#~ msgstr "Створення порожньої бази даних в" + +#~ msgid "Cannot overwrite already existing file" +#~ msgstr "Неможливо перезаписати вже існуючий файл" + +#~ msgid "Bumping Repository database" +#~ msgstr "Створюю резервну копію бази даних репозиторію" + +#~ msgid "These are the packages that would be changed to injected status" +#~ msgstr "Ось пакунки, статус яких має бути змінено на 'введено'" + +#, fuzzy +#~ msgid "Would you like to transform them now ?" +#~ msgstr "Бажаєте трансформувати їх зараз?" + +#~ msgid "Transforming from database" +#~ msgstr "Трансформування з бази даних" + +#~ msgid "Database transform complete" +#~ msgstr "Трансформація даних бази завершена" + +#~ msgid "So sweetheart, what packages do you want to remove ?" +#~ msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" + +#~ msgid "So sweetheart, what packages do you want to add ?" +#~ msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" + +#, fuzzy +#~ msgid "These are the packages that would be added/updated" +#~ msgstr "Тут перераховані пакунки, що будуть встановлені/оновлені" + +#, fuzzy +#~ msgid "" +#~ "These are the newly available packages, either updatable or not installed" +#~ msgstr "Ось пакунки, що повинні бути встановлені" + +#~ msgid "No package sets found" +#~ msgstr "Не знайдено жодного набору пакунків" + +#~ msgid "package set not found" +#~ msgstr "набір пакунків не знайдений" + +#, fuzzy +#~ msgid "Transform complete" +#~ msgstr "Трансформація даних бази завершена" + +#, fuzzy +#~ msgid "What packages do you want to remove ?" +#~ msgstr "Отже, зайчику, котрий набір пакунків ти бажаєш видалити" + +#, fuzzy +#~ msgid "What packages do you want to add ?" +#~ msgstr "Отже, котику, котрий набір пакунків ти бажаєш додати" + #~ msgid "Entropy Server interface must be run as root" #~ msgstr "" #~ "Серверний інтерфейс Entropy повинен бути виконаний від імені " #~ "суперкористувача root" -#, fuzzy -#~ msgid "reset error" -#~ msgstr "помилка сокета" - #~ msgid "Cannot acquire Entropy resources lock." #~ msgstr "Неможливо підтвердити блокування ресурсів Entropy" @@ -10344,9 +10753,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "empty username" #~ msgstr "порожнє ім'я користувача" -#~ msgid "user not found" -#~ msgstr "користувача не знайдено" - #~ msgid "you need to login on the website to update your password format" #~ msgstr "" #~ "Вам необхідно залогінитися на сайті, щоб оновити формат Вашого пароля" @@ -10424,10 +10830,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "EAPI3 Service status" #~ msgstr "Статус служби EAPI3" -#, fuzzy -#~ msgid "remote repository suddenly locked" -#~ msgstr "віддалену базу даних несподівано було заблоковано." - #~ msgid "EAPI3 Service" #~ msgstr "Служба EAPI3" @@ -10792,9 +11194,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "From repository" #~ msgstr "З репозиторію" -#~ msgid "To repository" -#~ msgstr "В репозиторій" - #~ msgid "Copy instead of move?" #~ msgstr "Копіювати замість переміщення?" @@ -10845,18 +11244,9 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Check mode" #~ msgstr "Режим перевірки" -#~ msgid "Get repository notice board" -#~ msgstr "Отримати дошку повідомлень репозиторію" - -#~ msgid "Remove notice board entry" -#~ msgstr "Видалити запис з дошки повідомлень" - #~ msgid "Entry Identifiers" #~ msgstr "Ідентифікатори записів" -#~ msgid "Add notice board entry" -#~ msgstr "Додати запис до дошки повідомлень" - #~ msgid "Notice link" #~ msgstr "Посилання на зауваження" @@ -10942,9 +11332,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Previous database copied to file" #~ msgstr "Попередня база даних зкопійована у файл" -#~ msgid "All the repositories were already up to date." -#~ msgstr "Все репозиторії вже оновлені до останньої версії." - #~ msgid "repositories were already up to date. Others have been updated." #~ msgstr "" #~ "репозиторії вже були оновлені до найновішої версії, інші вже оновлено." @@ -11246,9 +11633,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "No valid repositories" #~ msgstr "Немає дійсних репозиторіїв" -#~ msgid "not available" -#~ msgstr "недоступний" - #~ msgid "is empty" #~ msgstr "порожній" @@ -11307,9 +11691,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "id for atom is duplicated, ignoring" #~ msgstr "id для атома продубльовано, пропускаємо" -#~ msgid "file not found" -#~ msgstr "файл не знайдено" - #~ msgid "invalid checksum" #~ msgstr "хибна контрольна сума" @@ -11328,9 +11709,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "A valid UGC Client interface based instance is needed" #~ msgstr "Потрібна коректна сесія, що базується на UGC Client" -#~ msgid "Cannot setup cache directory" -#~ msgstr "Неможливо встановити директорію кеша" - #~ msgid "Scanning hard disk" #~ msgstr "Сканування жорсткого диска" @@ -11392,9 +11770,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Downloading packages system mask" #~ msgstr "Завантажую пакунки згідно системи масок" -#~ msgid "Downloading repository provided package keywords" -#~ msgstr "Завантажую пакунки згідно наданих репозиторієм ключових слів" - #~ msgid "Downloading conflicting tagged packages file" #~ msgstr "Завантажую файл пакунків з конфліктуючими тегами" @@ -11530,9 +11905,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "You should press the button" #~ msgstr "Вам слід натиснути кнопку" -#~ msgid "Update Repositories" -#~ msgstr "Оновити репозиторії" - #~ msgid "now" #~ msgstr "зараз" @@ -11629,9 +12001,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Cannot move/copy packages from different repositories" #~ msgstr "Неможливо перемістити/скопіювати пакунки з різних репозиторіїв" -#~ msgid "Execute copy" -#~ msgstr "Виконати копію" - #~ msgid "Entropy packages move/copy" #~ msgstr "Копіювання/переміщення пакунків Entropy" @@ -11644,9 +12013,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Insert your new notice board entry" #~ msgstr "Введіть Ваш новий запис дошки повідомлень" -#~ msgid "Server" -#~ msgstr "Сервер" - #~ msgid "current revision" #~ msgstr "поточна версія" @@ -11665,9 +12031,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Choose the execution mode" #~ msgstr "Обрати режим виконання" -#~ msgid "Commit message" -#~ msgstr "Підтвердити повідомлення" - #~ msgid "Pretend mode" #~ msgstr "Вдаваний режим" @@ -11680,9 +12043,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Mirror updates information" #~ msgstr "Інформація оновлення дзеркала" -#~ msgid "Choose the destination repository" -#~ msgstr "оберіть репозиторій призначення" - #~ msgid "To be injected" #~ msgstr "До впровадження" @@ -11743,9 +12103,6 @@ msgstr "_Завантажте пакунковий менеджер" #~ msgid "Eclass" #~ msgstr "Eclass" -#~ msgid "Choose the repository" -#~ msgstr "Оберіть репозиторій" - #~ msgid "Choose the repositories you want to scan" #~ msgstr "Оберіть репозиторій, в якому ви бажали б пошукати"